diff --git a/core/core-frontend/src/custom-component/v-query/NumberInput.vue b/core/core-frontend/src/custom-component/v-query/NumberInput.vue index 58b79a3a66..656bb0a3f2 100644 --- a/core/core-frontend/src/custom-component/v-query/NumberInput.vue +++ b/core/core-frontend/src/custom-component/v-query/NumberInput.vue @@ -55,7 +55,7 @@ onBeforeMount(() => { setParams() }) const queryConditionWidth = inject('com-width', Function, true) -const customStyle = inject<{ background: string }>('$custom-style-filter') +const customStyle = inject<{ background: string; border: string }>('$custom-style-filter') const isConfirmSearch = inject('is-confirm-search', Function, true) const getCustomWidth = () => { @@ -78,6 +78,10 @@ const handleValueChange = () => { return } } + +const color = computed(() => { + return customStyle.border +})