diff --git a/src/components/Menu/ActionInsertLink.vue b/src/components/Menu/ActionInsertLink.vue
index 1ec7600d8eb..9452574cf54 100644
--- a/src/components/Menu/ActionInsertLink.vue
+++ b/src/components/Menu/ActionInsertLink.vue
@@ -45,7 +45,7 @@
:data-text-action-entry="`${actionEntry.key}-file`"
@click="linkFile">
-
+
{{ t('text', 'Link to file or folder') }}
@@ -97,7 +97,7 @@ import { getMarkAttributes, isActive } from '@tiptap/core'
import { t } from '@nextcloud/l10n'
import { buildFilePicker } from '../../helpers/filePicker.js'
import { HOOK_MENUBAR_LINK_CUSTOM_ACTION, useFileMixin } from '../Editor.provider.ts'
-import { Document, LinkOff, Loading, Shape, Web } from '../icons.js'
+import { Folder, LinkOff, Loading, Shape, Web } from '../icons.js'
import { BaseActionEntry } from './BaseActionEntry.js'
import { useMenuIDMixin } from './MenuBar.provider.js'
@@ -107,7 +107,7 @@ export default {
NcActions,
NcActionButton,
NcActionInput,
- Document,
+ Folder,
Loading,
LinkOff,
Web,
diff --git a/src/components/SuggestionsBar.vue b/src/components/SuggestionsBar.vue
index 23cc50e897c..ff2709225aa 100644
--- a/src/components/SuggestionsBar.vue
+++ b/src/components/SuggestionsBar.vue
@@ -13,7 +13,7 @@
class="suggestions--button"
@click="linkFile">
-
+
{{ t('text', 'Link to file or folder') }}
@@ -61,7 +61,7 @@ import { t } from '@nextcloud/l10n'
import { generateUrl } from '@nextcloud/router'
import NcButton from '@nextcloud/vue/components/NcButton'
import { getLinkWithPicker } from '@nextcloud/vue/dist/Components/NcRichText.js'
-import { Document, Shape, Table as TableIcon, Upload } from '../components/icons.js'
+import { Folder, Shape, Table as TableIcon, Upload } from '../components/icons.js'
import { useConnection } from '../composables/useConnection.ts'
import { useEditor } from '../composables/useEditor.ts'
import { useNetworkState } from '../composables/useNetworkState.ts'
@@ -74,7 +74,7 @@ export default {
name: 'SuggestionsBar',
components: {
TableIcon,
- Document,
+ Folder,
NcButton,
Shape,
Upload,