diff --git a/src/components/Menu/ActionInsertLink.vue b/src/components/Menu/ActionInsertLink.vue
index 80deeabb0a3..a90a1b8a355 100644
--- a/src/components/Menu/ActionInsertLink.vue
+++ b/src/components/Menu/ActionInsertLink.vue
@@ -46,7 +46,7 @@
:data-text-action-entry="`${actionEntry.key}-file`"
@click="linkFile">
-
+
{{ t('text', 'Link to file or folder') }}
@@ -99,7 +99,7 @@ import { t } from '@nextcloud/l10n'
import { useNetworkState } from '../../composables/useNetworkState.ts'
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'
@@ -109,7 +109,7 @@ export default {
NcActions,
NcActionButton,
NcActionInput,
- Document,
+ Folder,
Loading,
LinkOff,
Web,
diff --git a/src/components/SuggestionsBar.vue b/src/components/SuggestionsBar.vue
index b85852423c1..4e6c6fd2258 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,