Skip to content

Commit

Permalink
fix(ci): fix eslint errors
Browse files Browse the repository at this point in the history
Signed-off-by: Andrey Borysenko <[email protected]>
  • Loading branch information
andrey18106 committed Oct 24, 2024
1 parent 7ef879b commit 56e3f45
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 11 deletions.
19 changes: 9 additions & 10 deletions apps/settings/src/components/AppList/AppItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,7 @@ import SvgFilterMixin from '../SvgFilterMixin.vue'
import NcButton from '@nextcloud/vue/dist/Components/NcButton.js'
import NcIconSvgWrapper from '@nextcloud/vue/dist/Components/NcIconSvgWrapper.js'
import { mdiCogOutline } from '@mdi/js'
import { useAppApiStore } from '../../store/app-api-store'

import { useAppApiStore } from '../../store/app-api-store.ts'

export default {
name: 'AppItem',
Expand All @@ -134,14 +133,6 @@ export default {
NcButton,
NcIconSvgWrapper,
},
setup() {
const appApiStore = useAppApiStore()

return {
appApiStore,
mdiCogOutline,
}
},
mixins: [AppManagement, SvgFilterMixin],
props: {
app: {
Expand Down Expand Up @@ -169,6 +160,14 @@ export default {
default: false,
},
},
setup() {
const appApiStore = useAppApiStore()

return {
appApiStore,
mdiCogOutline,
}
},
data() {
return {
isSelected: false,
Expand Down
1 change: 0 additions & 1 deletion apps/settings/src/mixins/AppManagement.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@

import { showError } from '@nextcloud/dialogs'
import rebuildNavigation from '../service/rebuild-navigation.js'
import { useAppApiStore } from '../store/app-api-store'

export default {
computed: {
Expand Down

0 comments on commit 56e3f45

Please sign in to comment.