Skip to content

Commit

Permalink
Merge pull request #2855 from emqx/dev/1.9.2
Browse files Browse the repository at this point in the history
Sync code from refs/heads/dev/1.9.2 to enterprise
  • Loading branch information
Kinplemelon authored Aug 5, 2024
2 parents 7f784e4 + c8adbde commit 1ae49b7
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 @@ -168,7 +168,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 1ae49b7

Please sign in to comment.