mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
* 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
19 lines
377 B
Vue
19 lines
377 B
Vue
<template>
|
|
<base-card>
|
|
<h2 class="title">{{ $t('settings.organizations.name') }}</h2>
|
|
<hc-empty icon="tasks" message="Coming Soon…" />
|
|
</base-card>
|
|
</template>
|
|
|
|
<script>
|
|
import HcEmpty from '~/components/Empty/Empty'
|
|
import scrollToContent from './scroll-to-content.js'
|
|
|
|
export default {
|
|
mixins: [scrollToContent],
|
|
components: {
|
|
HcEmpty,
|
|
},
|
|
}
|
|
</script>
|