Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Action module wizard: Update texts to mention scenes and scripts #1994

Merged
merged 1 commit into from
Aug 19, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@
<f7-col class="elevation-2 elevation-hover-6 elevation-pressed-1 triggertype-big-button" width="50">
<f7-link class="display-flex flex-direction-column no-ripple" no-ripple @click="chooseScriptCategory">
<f7-icon size="35" f7="doc_plaintext" class="margin" />
Run<br>Script
Inline<br>Script
</f7-link>
</f7-col>
</f7-row>
<f7-row class="margin-bottom">
<f7-col class="elevation-2 elevation-hover-6 elevation-pressed-1 triggertype-big-button" width="50">
<f7-link class="display-flex flex-direction-column no-ripple" no-ripple @click="chooseRulesCategory">
<f7-icon size="35" f7="wand_stars" class="margin" />
Other<br>Rules
Scenes, Scripts<br>& Rules
</f7-link>
</f7-col>
<f7-col class="elevation-2 elevation-hover-6 elevation-pressed-1 triggertype-big-button" width="50">
Expand Down Expand Up @@ -111,8 +111,8 @@
</f7-block>
<f7-block class="no-margin no-padding" v-else-if="category === 'rules'">
<f7-list>
<f7-list-item radio :checked="rulesEventType === 'run'" name="rulesEventType" title="run these rule(s)" @click="updateRulesEventType('run')" />
<f7-list-item radio :checked="rulesEventType === 'enable'" name="rulesEventType" title="enable or disable these rule(s)" @click="updateRulesEventType('enable')" />
<f7-list-item radio :checked="rulesEventType === 'run'" name="rulesEventType" title="run" @click="updateRulesEventType('run')" />
<f7-list-item radio :checked="rulesEventType === 'enable'" name="rulesEventType" title="enable or disable" @click="updateRulesEventType('enable')" />
</f7-list>
<config-sheet v-if="currentModuleType" :key="currentModule.id"
:parameterGroups="[]"
Expand Down