diff options
Diffstat (limited to 'apps/updatenotification/src')
-rw-r--r-- | apps/updatenotification/src/components/AppChangelogDialog.vue | 2 | ||||
-rw-r--r-- | apps/updatenotification/src/components/UpdateNotification.vue | 20 | ||||
-rw-r--r-- | apps/updatenotification/src/views/App.vue | 4 |
3 files changed, 13 insertions, 13 deletions
diff --git a/apps/updatenotification/src/components/AppChangelogDialog.vue b/apps/updatenotification/src/components/AppChangelogDialog.vue index 4cd38498747..0fb7432843c 100644 --- a/apps/updatenotification/src/components/AppChangelogDialog.vue +++ b/apps/updatenotification/src/components/AppChangelogDialog.vue @@ -19,7 +19,7 @@ import { generateOcsUrl } from '@nextcloud/router' import { ref, watchEffect } from 'vue' import axios from '@nextcloud/axios' -import NcDialog from '@nextcloud/vue/dist/Components/NcDialog.js' +import NcDialog from '@nextcloud/vue/components/NcDialog' import Markdown from './Markdown.vue' const props = withDefaults( diff --git a/apps/updatenotification/src/components/UpdateNotification.vue b/apps/updatenotification/src/components/UpdateNotification.vue index 6df59ce2ef6..94c58dbdfd9 100644 --- a/apps/updatenotification/src/components/UpdateNotification.vue +++ b/apps/updatenotification/src/components/UpdateNotification.vue @@ -167,18 +167,18 @@ import { getLoggerBuilder } from '@nextcloud/logger' import { generateUrl, getRootUrl, generateOcsUrl } from '@nextcloud/router' import axios from '@nextcloud/axios' -import NcActions from '@nextcloud/vue/dist/Components/NcActions.js' -import NcActionButton from '@nextcloud/vue/dist/Components/NcActionButton.js' -import NcActionCaption from '@nextcloud/vue/dist/Components/NcActionCaption.js' -import NcActionLink from '@nextcloud/vue/dist/Components/NcActionLink.js' -import NcNoteCard from '@nextcloud/vue/dist/Components/NcNoteCard.js' -import NcSelect from '@nextcloud/vue/dist/Components/NcSelect.js' -import NcSettingsSection from '@nextcloud/vue/dist/Components/NcSettingsSection.js' +import NcActions from '@nextcloud/vue/components/NcActions' +import NcActionButton from '@nextcloud/vue/components/NcActionButton' +import NcActionCaption from '@nextcloud/vue/components/NcActionCaption' +import NcActionLink from '@nextcloud/vue/components/NcActionLink' +import NcNoteCard from '@nextcloud/vue/components/NcNoteCard' +import NcSelect from '@nextcloud/vue/components/NcSelect' +import NcSettingsSection from '@nextcloud/vue/components/NcSettingsSection' import IconChevronDown from 'vue-material-design-icons/ChevronDown.vue' import IconCloudCheckVariant from 'vue-material-design-icons/CloudCheckVariant.vue' import IconLink from 'vue-material-design-icons/Link.vue' import IconNewBox from 'vue-material-design-icons/NewBox.vue' -import IconPencil from 'vue-material-design-icons/Pencil.vue' +import IconPencil from 'vue-material-design-icons/PencilOutline.vue' import IconSourceBranch from 'vue-material-design-icons/SourceBranch.vue' import IconStar from 'vue-material-design-icons/Star.vue' import IconWeatherNight from 'vue-material-design-icons/WeatherNight.vue' @@ -357,10 +357,10 @@ export default { this.missingAppUpdates = data.ocs.data.missing this.isListFetched = true this.appStoreFailed = false - }).catch(({ data }) => { + }).catch(({ response }) => { this.availableAppUpdates = [] this.missingAppUpdates = [] - this.appStoreDisabled = data.ocs.data.appstore_disabled + this.appStoreDisabled = response.data.ocs.data.appstore_disabled this.isListFetched = true this.appStoreFailed = true }) diff --git a/apps/updatenotification/src/views/App.vue b/apps/updatenotification/src/views/App.vue index cd4fa282dfe..8bf1d86dfe2 100644 --- a/apps/updatenotification/src/views/App.vue +++ b/apps/updatenotification/src/views/App.vue @@ -19,8 +19,8 @@ import { translate as t } from '@nextcloud/l10n' import { loadState } from '@nextcloud/initial-state' -import NcAppContent from '@nextcloud/vue/dist/Components/NcAppContent.js' -import NcContent from '@nextcloud/vue/dist/Components/NcContent.js' +import NcAppContent from '@nextcloud/vue/components/NcAppContent' +import NcContent from '@nextcloud/vue/components/NcContent' import Markdown from '../components/Markdown.vue' const { |