fix(Settings.vue): Don't mutate prop

Signed-off-by: Marcel Klehr <mklehr@gmx.net>
This commit is contained in:
Marcel Klehr 2024-02-03 13:38:07 +01:00
parent 11c4a4ed9a
commit c88661473d
1 changed files with 2 additions and 2 deletions

View File

@ -6,10 +6,10 @@
<template>
<NcAppSettingsDialog :open="settingsOpen"
@update:open="$emit('update:settingsOpen', $event)"
:show-navigation="true"
:name="t('bookmarks', 'Bookmarks settings')"
class="settings">
class="settings"
@update:open="$emit('update:settingsOpen', $event)">
<NcAppSettingsSection id="importexport" :name="t('bookmarks', 'Import/Export')">
<template #icon>
<ImportIcon :size="20" />