Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/AppSettings.vue')
-rw-r--r--src/components/AppSettings.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/AppSettings.vue b/src/components/AppSettings.vue
index e476f9d9..2bb89eee 100644
--- a/src/components/AppSettings.vue
+++ b/src/components/AppSettings.vue
@@ -1,5 +1,5 @@
<template>
- <AppNavigationSettings :title="t('notes', 'Notes settings')" :class="{ loading: saving }">
+ <NcAppNavigationSettings :title="t('notes', 'Notes settings')" :class="{ loading: saving }">
<div class="settings-block">
<p class="settings-hint">
<label for="notesPath">{{ t('notes', 'Folder to store your notes') }}</label>
@@ -42,12 +42,12 @@
</option>
</select>
</div>
- </AppNavigationSettings>
+ </NcAppNavigationSettings>
</template>
<script>
import {
- AppNavigationSettings,
+ NcAppNavigationSettings,
} from '@nextcloud/vue'
import { setSettings } from '../NotesService.js'
@@ -57,7 +57,7 @@ export default {
name: 'AppSettings',
components: {
- AppNavigationSettings,
+ NcAppNavigationSettings,
},
data() {