Skip to content

Commit

Permalink
Merge branch 'enterprise' into prepare/enterprise/1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Kinplemelon committed Aug 5, 2024
2 parents 31af0a9 + 1ae49b7 commit 748cc3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/RuleEngine/components/RuleInputs.vue
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ const showInputDrawer = ref(false)
*/
const currentEditIndex = ref(-1)
const currentEditInput: ComputedRef<undefined | string> = computed(() =>
currentEditIndex.value < 0 ? undefined : inputList.value[currentEditIndex.value].value,
currentEditIndex.value < 0 ? undefined : inputList.value[currentEditIndex.value]?.value,
)
const editInput = (index: number) => {
Expand Down

0 comments on commit 748cc3b

Please sign in to comment.