Max fb12a139bc
fix(webapp): better settings ux (#8347)
* Scroll to notification settings when opened (for mobile)

* scroll to settings content when clicking on menu entry

* Scroll to settings content on mobile and fix weird loading state

* Add fail-safety

* Fix linting
2025-04-14 17:56:29 +00:00

19 lines
359 B
Vue

<template>
<base-card>
<h2 class="title">{{ $t('settings.security.name') }}</h2>
<change-password />
</base-card>
</template>
<script>
import ChangePassword from '~/components/Password/Change'
import scrollToContent from './scroll-to-content.js'
export default {
mixins: [scrollToContent],
components: {
ChangePassword,
},
}
</script>