We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0acf7b5 + 86b6adb commit 0391bb8Copy full SHA for 0391bb8
1 file changed
src/components/NcChip/NcChip.vue
@@ -93,6 +93,7 @@ export default {
93
</span>
94
<NcActions v-if="canClose || hasActions()"
95
class="nc-chip__actions"
96
+ :container="actionsContainer"
97
:force-menu="!canClose"
98
variant="tertiary-no-background">
99
<NcActionButton v-if="canClose"
@@ -129,7 +130,15 @@ const props = defineProps({
129
130
},
131
132
/**
- * Main text of the chip
133
+ * Container for the actions
134
+ */
135
+ actionsContainer: {
136
+ type: String,
137
+ default: 'body'
138
+ },
139
+
140
+ /**
141
+ * Main text of the chip.
142
*/
143
text: {
144
type: String,
0 commit comments