Skip to content

Commit 3be1a8b

Browse files
committed
Move modal code
1 parent 5dd45d2 commit 3be1a8b

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

contentcuration/contentcuration/frontend/channelList/views/ChannelSet/StudioCollectionsTable.vue

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -25,20 +25,6 @@
2525
:text="$tr('aboutChannelSetsLink')"
2626
@click="infoDialog = true"
2727
/>
28-
<KModal
29-
v-if="infoDialog"
30-
:title="$tr('aboutChannelSets')"
31-
:cancelText="$tr('cancelButtonLabel')"
32-
@cancel="infoDialog = false"
33-
>
34-
<div>
35-
<p>{{ $tr('channelSetsDescriptionText') }}</p>
36-
<p>{{ $tr('channelSetsInstructionsText') }}</p>
37-
<p :style="{ color: $themeTokens.error }">
38-
{{ $tr('channelSetsDisclaimer') }}
39-
</p>
40-
</div>
41-
</KModal>
4228
</div>
4329
</div>
4430

@@ -135,7 +121,6 @@
135121
</template>
136122
</KTable>
137123

138-
<!-- Delete Confirmation Modal -->
139124
<KModal
140125
v-if="deleteDialog"
141126
:title="$tr('deleteChannelSetTitle')"
@@ -146,6 +131,21 @@
146131
>
147132
<p>{{ $tr('deleteChannelSetText') }}</p>
148133
</KModal>
134+
135+
<KModal
136+
v-if="infoDialog"
137+
:title="$tr('aboutChannelSets')"
138+
:cancelText="$tr('cancelButtonLabel')"
139+
@cancel="infoDialog = false"
140+
>
141+
<div>
142+
<p>{{ $tr('channelSetsDescriptionText') }}</p>
143+
<p>{{ $tr('channelSetsInstructionsText') }}</p>
144+
<p :style="{ color: $themeTokens.error }">
145+
{{ $tr('channelSetsDisclaimer') }}
146+
</p>
147+
</div>
148+
</KModal>
149149
</KPageContainer>
150150

151151
</template>

0 commit comments

Comments
 (0)