add channel federation warn
This commit is contained in:
parent
5475b6ed44
commit
eeb4a41d6c
|
@ -685,6 +685,7 @@ logs: "Logs"
|
|||
delayed: "Delayed"
|
||||
database: "Database"
|
||||
channel: "Channels"
|
||||
channelFederationWarn: "Channels do not yet federate to other servers"
|
||||
create: "Create"
|
||||
notificationSetting: "Notification settings"
|
||||
notificationSettingDesc: "Select the types of notification to display."
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
:tabs="headerTabs"
|
||||
/></template>
|
||||
<MkSpacer :content-max="700">
|
||||
<MkInfo class="_gap" :warn="true">{{ i18n.ts.channelFederationWarn }}</MkInfo>
|
||||
<swiper
|
||||
:round-lengths="true"
|
||||
:touch-angle="25"
|
||||
|
@ -119,6 +120,7 @@ import MkInput from "@/components/form/input.vue";
|
|||
import MkRadios from "@/components/form/radios.vue";
|
||||
import MkButton from "@/components/MkButton.vue";
|
||||
import MkFolder from "@/components/MkFolder.vue";
|
||||
import MkInfo from "@/components/MkInfo.vue";
|
||||
import { useRouter } from "@/router";
|
||||
import { definePageMetadata } from "@/scripts/page-metadata";
|
||||
import { deviceKind } from "@/scripts/device-kind";
|
||||
|
|
|
@ -298,6 +298,9 @@ hr {
|
|||
|
||||
._gap {
|
||||
margin: var(--margin) 0;
|
||||
&:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
}
|
||||
|
||||
// TODO: 廃止
|
||||
|
|
Loading…
Reference in New Issue