Skip to content

Commit 1d2d01c

Browse files
authored
Use KButton for some buttons in Channels
1 parent cd187a3 commit 1d2d01c

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

contentcuration/contentcuration/frontend/channelList/views/Channel/ChannelList.vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
>
1515
<VLayout>
1616
<VSpacer />
17-
<VBtn
17+
<KButton
1818
v-if="isEditable && !loading"
19-
color="primary"
19+
appearance="raised-button"
20+
primary
2021
class="add-channel-button"
2122
data-test="add-channel"
23+
:text="$tr('channel')"
2224
@click="newChannel"
23-
>
24-
{{ $tr('channel') }}
25-
</VBtn>
25+
/>
2626
</VLayout>
2727
</VFlex>
2828
</VLayout>

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@
3939
</VFlex>
4040
<VSpacer />
4141
<VFlex class="text-xs-right">
42-
<VBtn
42+
<KButton
4343
v-if="!loading"
44-
color="primary"
44+
appearance="raised-button"
45+
primary
4546
data-test="add-channelset"
47+
:text="$tr('addChannelSetTitle')"
4648
@click="newChannelSet"
47-
>
48-
{{ $tr('addChannelSetTitle') }}
49-
</VBtn>
49+
/>
5050
</VFlex>
5151
</VLayout>
5252
<VLayout

0 commit comments

Comments
 (0)