mirror of
https://github.com/suitenumerique/docs
synced 2026-04-21 13:37:20 +00:00
💄(frontend) change icon duplicate feature
We change the icon for the duplicate feature in the document toolbox and the documents grid actions from 'call_split' to 'content_copy' to better reflect the action of duplicating a document.
This commit is contained in:
parent
70f0c7052c
commit
377d4e8971
2 changed files with 2 additions and 2 deletions
|
|
@ -164,7 +164,7 @@ export const DocToolBox = ({ doc }: DocToolBoxProps) => {
|
|||
},
|
||||
{
|
||||
label: t('Duplicate'),
|
||||
icon: 'call_split',
|
||||
icon: 'content_copy',
|
||||
disabled: !doc.abilities.duplicate,
|
||||
callback: () => {
|
||||
duplicateDoc({
|
||||
|
|
|
|||
|
|
@ -72,7 +72,7 @@ export const DocsGridActions = ({
|
|||
},
|
||||
{
|
||||
label: t('Duplicate'),
|
||||
icon: 'call_split',
|
||||
icon: 'content_copy',
|
||||
disabled: !doc.abilities.duplicate,
|
||||
callback: () => {
|
||||
duplicateDoc({
|
||||
|
|
|
|||
Loading…
Reference in a new issue