refactor(editor): Migrate ndv.store to composition API (#11574)

This commit is contained in:
Ricardo Espinoza
2024-11-08 08:11:36 -05:00
committed by GitHub
parent aec372793b
commit 38fefff348
10 changed files with 458 additions and 315 deletions

View File

@@ -523,7 +523,7 @@ const isHtmlNode = computed(() => !!node.value && node.value.type === HTML_NODE_
const isInputTypeString = computed(() => props.parameter.type === 'string');
const isInputTypeNumber = computed(() => props.parameter.type === 'number');
const isInputDataEmpty = computed(() => ndvStore.isNDVDataEmpty('input'));
const isInputDataEmpty = computed(() => ndvStore.isInputPanelEmpty);
const isDropDisabled = computed(
() =>
props.parameter.noDataExpression ||