add warning if on unexpected server

This commit is contained in:
2023-12-16 08:04:16 -07:00
parent c182068901
commit 4f2cb55753
9 changed files with 246 additions and 70 deletions

View File

@@ -1,5 +1,7 @@
<template>
<QuickNav selected="Home"></QuickNav>
<TopMessage />
<!-- CONTENT -->
<section id="Content" class="p-6 pb-24">
<h1 id="ViewHeading" class="text-4xl text-center font-light pt-4 mb-8">
@@ -149,6 +151,7 @@ import {
import { Contact } from "@/db/tables/contacts";
import QuickNav from "@/components/QuickNav.vue";
import EntityIcon from "@/components/EntityIcon.vue";
import TopMessage from "@/components/TopMessage";
import { IIdentifier } from "@veramo/core";
import { Account } from "@/db/tables/accounts";
@@ -160,7 +163,7 @@ interface Notification {
}
@Component({
components: { GiftedDialog, QuickNav, EntityIcon },
components: { GiftedDialog, QuickNav, EntityIcon, TopMessage },
})
export default class HomeView extends Vue {
$notify!: (notification: Notification, timeout?: number) => void;