Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/CnActionsBar/CnActionsBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<!-- Actions menu (Refresh, Import, Export, mass actions) -->
<NcActions
:force-name="true"
:inline="0"
:inline="inlineActionCount"
menu-name="Actions">
<NcActionButton :disabled="refreshing || refreshDisabled" @click="$emit('refresh')">
<template #icon>
Expand Down Expand Up @@ -184,7 +184,7 @@ export default {
/** How many action buttons to show inline (rest go in overflow dropdown) */
inlineActionCount: {
type: Number,
default: 2,
default: 0,
},
/** Whether to show the built-in mass Import action */
showMassImport: {
Expand Down
2 changes: 1 addition & 1 deletion src/components/CnIndexPage/CnIndexPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ export default {
/** How many action buttons to show inline (rest go in overflow dropdown) */
inlineActionCount: {
type: Number,
default: 2,
default: 0,
},
/** Whether to show the built-in mass Import action */
showMassImport: {
Expand Down
Loading