Skip to content

Commit

Permalink
Rule edit: Fix undefined currentSection error in trigger-module-wizard (
Browse files Browse the repository at this point in the history
#2350)

Signed-off-by: Jimmy Tanagra <jcode@tanagra.id.au>
  • Loading branch information
jimtng committed Feb 14, 2024
1 parent 762b4b2 commit 85f21bb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@
<f7-list-item radio :checked="timeEventType === 'timeOfDay'" name="timeEventType" title="at a fixed time of the day" @click="updateTimeEventType('timeOfDay')" />
<f7-list-item radio :checked="timeEventType === 'dateTime'" name="timeEventType" title="at the time specified in an item's state" @click="updateTimeEventType('dateTime')" />
</f7-list>
<config-sheet v-if="currentModuleType" :key="currentSection + currentModule.id"
<config-sheet v-if="currentModuleType" :key="currentModule.id"
:parameterGroups="[]"
:parameters="currentModuleType.configDescriptions"
:configuration="currentModule.configuration"
Expand All @@ -168,7 +168,7 @@
<f7-block-footer class="padding-horizontal margin-vertical">
and this start level has been reached:
</f7-block-footer>
<config-sheet v-if="currentModuleType" :key="currentSection + currentModule.id"
<config-sheet v-if="currentModuleType" :key="currentModule.id"
:parameterGroups="[]"
:parameters="currentModuleType.configDescriptions"
:configuration="currentModule.configuration"
Expand Down

0 comments on commit 85f21bb

Please sign in to comment.