diff --git a/core/core-frontend/src/views/chart/components/editor/index.vue b/core/core-frontend/src/views/chart/components/editor/index.vue index 96cf313232..3c6f3f0b48 100644 --- a/core/core-frontend/src/views/chart/components/editor/index.vue +++ b/core/core-frontend/src/views/chart/components/editor/index.vue @@ -1608,6 +1608,12 @@ const saveValueFormatter = () => { closeValueFormatter() } +const elRowStyle = computed(() => { + return { + height: embeddedStore.getToken ? 'calc(100% - 45px)' : 'calc(100vh - 110px)' + } +}) + const addCalcField = groupType => { editCalcField.value = true isCalcFieldAdd.value = true @@ -2038,7 +2044,7 @@ const deleteChartFieldItem = id => { - +