Skip to content

Commit 7058e16

Browse files
authored
fix: Do not suggest the 4th step in action creation form when the campaign is disabled - MEED-9296 - Meeds-io/meeds#3412 (#1934)
Prior to this change, when creating an action and the campaign was not yet enabled, the publication step was suggested as an empty step. This change prevents that step from being suggested when the campaign is disabled.
1 parent a14a0f2 commit 7058e16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

portlets/src/main/webapp/vue-app/rules/components/drawers/RuleContentFormDrawer.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@
302302
</v-stepper-items>
303303
</div>
304304
</div>
305-
<div :class="expanded && 'pt-6'">
305+
<div v-if="enablePublication" :class="expanded && 'pt-6'">
306306
<div :class="!expanded && 'pt-6'">
307307
<v-stepper-step
308308
:step="4"

0 commit comments

Comments
 (0)