Skip to content

Commit

Permalink
Resolve correct breadcrumb name
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexAndBear committed Nov 10, 2023
1 parent bfa0f3f commit 426063a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/web-runtime/src/pages/account.vue
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ import { SpaceResource, isPersonalSpaceResource } from '@ownclouders/web-client/
import { AppLoadingSpinner } from '@ownclouders/web-pkg'
import { SSEAdapter } from '@ownclouders/web-client/src/sse'
import { supportedLanguages } from '../defaults/languages'
import { User } from '@ownclouders/web-client/src/generated'
export default defineComponent({
name: 'AccountPage',
Expand All @@ -154,7 +155,7 @@ export default defineComponent({
const clientService = useClientService()
const configurationManager = useConfigurationManager()
const valuesList = ref<SettingsValue[]>()
const graphUser = ref()
const graphUser = ref<User>()
const accountBundle = ref<SettingsBundle>()
const selectedLanguageValue = ref<LanguageOption>()
const disableEmailNotificationsValue = ref<boolean>()
Expand Down

0 comments on commit 426063a

Please sign in to comment.