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

github.com/nextcloud/photos.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.js')
-rw-r--r--src/main.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.js b/src/main.js
index 595ecb95..5e4a96d3 100644
--- a/src/main.js
+++ b/src/main.js
@@ -26,7 +26,7 @@ import { sync } from 'vuex-router-sync'
import { translate, translatePlural } from '@nextcloud/l10n'
import Vue from 'vue'
-import Gallery from './Gallery'
+import Photos from './Photos'
import router from './router'
import store from './store'
@@ -49,8 +49,8 @@ Vue.prototype.n = translatePlural
export default new Vue({
el: '#content',
// eslint-disable-next-line vue/match-component-file-name
- name: 'GalleryRoot',
+ name: 'PhotosRoot',
router,
store,
- render: h => h(Gallery),
+ render: h => h(Photos),
})