Skip to content

Commit

Permalink
npm lint:fix
Browse files Browse the repository at this point in the history
Signed-off-by: Vitor Mattos <[email protected]>
  • Loading branch information
vitormattos committed Jul 17, 2023
1 parent b744502 commit 9b51647
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
7 changes: 4 additions & 3 deletions src/components/LeftSidebar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,13 @@
</template>

<script>
// eslint-disable-next-line n/no-missing-import, import/no-unresolved
import iconNotifications from 'apps/announcementcenter/img/announcementcenter.svg?raw'
import NcAppNavigation from '@nextcloud/vue/dist/Components/NcAppNavigation.js'
import NcAppNavigationItem from '@nextcloud/vue/dist/Components/NcAppNavigationItem.js'
import NcIconSvgWrapper from '@nextcloud/vue/dist/Components/NcIconSvgWrapper.js'
import iconNotifications from 'apps/announcementcenter/img/announcementcenter.svg?raw'
export default {
name: 'LeftSidebar',
components: {
Expand All @@ -32,6 +33,6 @@ export default {
return {
iconNotifications,
}
}
},
}
</script>
7 changes: 3 additions & 4 deletions src/store/index.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
// eslint-disable-next-line n/no-missing-import, import/no-unresolved
import announcementsStore from 'apps/announcementcenter/src/store/announcementsStore.js'
import Vue from 'vue'
import Vuex, { Store } from 'vuex'

import storeConfig from './storeConfig.js'

// eslint-disable-next-line n/no-missing-import, import/no-unresolved
import announcementsStore from 'apps/announcementcenter/src/store/announcementsStore.js'

Vue.use(Vuex)

export default new Store({...storeConfig, ...announcementsStore})
export default new Store({ ...storeConfig, ...announcementsStore })

0 comments on commit 9b51647

Please sign in to comment.