Skip to content

Commit 377d4e8

Browse files
committed
💄(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.
1 parent 70f0c70 commit 377d4e8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/frontend/apps/impress/src/features/docs/doc-header/components/DocToolBox.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ export const DocToolBox = ({ doc }: DocToolBoxProps) => {
164164
},
165165
{
166166
label: t('Duplicate'),
167-
icon: 'call_split',
167+
icon: 'content_copy',
168168
disabled: !doc.abilities.duplicate,
169169
callback: () => {
170170
duplicateDoc({

src/frontend/apps/impress/src/features/docs/docs-grid/components/DocsGridActions.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export const DocsGridActions = ({
7272
},
7373
{
7474
label: t('Duplicate'),
75-
icon: 'call_split',
75+
icon: 'content_copy',
7676
disabled: !doc.abilities.duplicate,
7777
callback: () => {
7878
duplicateDoc({

0 commit comments

Comments
 (0)