Skip to content

Commit

Permalink
pkp/pkp-lib#10842 Update prop value for using ellipsis menu
Browse files Browse the repository at this point in the history
  • Loading branch information
blesildaramirez committed Jan 29, 2025
1 parent 5d03195 commit 0092239
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/managers/FileManager/FileManagerTableRow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<TableCell v-if="actionItems.length" no-wrap>
<DropdownActions
:label="t('common.moreActions')"
:button-variant="ellipsis"
button-variant="ellipsis"
:actions="actionItems"
@action="(actionName) => handleAction(actionName)"
></DropdownActions>
Expand Down
2 changes: 1 addition & 1 deletion src/managers/GalleyManager/GalleyManagerCellActions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
galleyManagerStore.itemActions.length
"
:label="t('common.moreActions')"
:button-variant="ellipsis"
button-variant="ellipsis"
:actions="galleyManagerStore.itemActions"
@action="(actionName) => galleyManagerStore[actionName]({galley})"
></DropdownActions>
Expand Down
2 changes: 1 addition & 1 deletion src/managers/ParticipantManager/ParticipantManager.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<DropdownActions
:actions="participantManagerStore.itemActions"
:label="`${participant.fullName} ${t('common.moreActions')}`"
:button-variant="ellipsis"
button-variant="ellipsis"
@action="
(actionName) =>
participantManagerStore[actionName]({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<TableCell>
<DropdownActions
:label="t('common.moreActions')"
:button-variant="ellipsis"
button-variant="ellipsis"
:actions="itemActions"
@action="handleAction"
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
},
]"
:label="t('invitation.management.options')"
:button-variant="ellipsis"
button-variant="ellipsis"
direction="left"
@action="
(actionName) =>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/dashboard/components/DashboardBulkActions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<DropdownActions
v-if="actions.length"
:label="t('common.moreActions')"
:button-variant="ellipsis"
button-variant="ellipsis"
:actions="actions"
direction="right"
@action="handleAction"
Expand Down

0 comments on commit 0092239

Please sign in to comment.