Skip to content

Commit

Permalink
Fix status tag flashing on campaign edit UI load.
Browse files Browse the repository at this point in the history
  • Loading branch information
knadh committed Sep 27, 2021
1 parent 93c7c87 commit bf2703b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/views/Campaign.vue
Expand Up @@ -2,7 +2,7 @@
<section class="campaign">
<header class="columns page-header">
<div class="column is-6">
<p v-if="isEditing" class="tags">
<p v-if="isEditing && data.status" class="tags">
<b-tag v-if="isEditing" :class="data.status">
{{ $t(`campaigns.status.${data.status}`) }}
</b-tag>
Expand Down

0 comments on commit bf2703b

Please sign in to comment.