Skip to content

Commit

Permalink
chore: delete unused variable
Browse files Browse the repository at this point in the history
Signed-off-by: yuda <[email protected]>
  • Loading branch information
yuda110 committed Sep 2, 2024
1 parent 6143e60 commit b6873f6
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
computed, defineExpose, reactive, ref,
} from 'vue';
import { max, orderBy } from 'lodash';
import { orderBy } from 'lodash';
import { SpaceConnector } from '@cloudforet/core-lib/space-connector';
import { numberFormatter } from '@cloudforet/utils';
Expand Down Expand Up @@ -41,7 +41,6 @@ const state = reactive({
loading: false,
errorMessage: undefined as string|undefined,
data: null as Data | null,
heatmapMaxValue: computed(() => max(state.chartData.map((d) => d?.[2] || 0)) ?? 1),
unit: computed<string|undefined>(() => widgetFrameProps.value.unitMap?.[state.dataField]),
boxWidth: computed<number>(() => {
if (!props.width) return BOX_MIN_WIDTH;
Expand Down

0 comments on commit b6873f6

Please sign in to comment.