Skip to content

Commit 8913a71

Browse files
feat(request-picker): add variant prop to support primary button style
Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
1 parent 066ce10 commit 8913a71

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

src/components/Request/RequestPicker.vue

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
:inline="inline ? 3 : 0"
99
:force-name="inline"
1010
:class="{column: inline}"
11+
:variant="variant"
1112
v-model:open="openedMenu">
1213
<template #icon>
1314
<NcIconSvgWrapper :path="mdiPlus" :size="20" />
@@ -147,6 +148,10 @@ export default {
147148
type: Boolean,
148149
default: false,
149150
},
151+
variant: {
152+
type: String,
153+
default: 'tertiary',
154+
},
150155
},
151156
setup() {
152157
const actionsMenuStore = useActionsMenuStore()

0 commit comments

Comments
 (0)