1
0
Fork 1
mirror of https://example.com synced 2024-11-22 12:16:40 +09:00

fix: unable to open server info by clicking tickers

This commit is contained in:
naskya 2023-09-22 15:46:38 +09:00
parent 9f66a25edd
commit 2f9a48b1ac
Signed by: naskya
GPG key ID: 164DFF24E2D40139
2 changed files with 3 additions and 12 deletions

View file

@ -27,7 +27,6 @@ const props = defineProps<{
softwareName?: string;
softwareVersion?: string;
};
host: string | null;
}>();
const ticker = ref<HTMLElement | null>(null);
@ -45,9 +44,6 @@ const instance = props.instance ?? {
softwareVersion: version,
};
const instanceInfoUrl =
props.host == null ? "/about" : `/instance-info/${props.host}`;
const commonNames = new Map<string, string>([
["birdsitelive", "BirdsiteLIVE"],
["bookwyrm", "BookWyrm"],

View file

@ -40,7 +40,6 @@
v-if="showTicker"
class="ticker"
:instance="note.user.instance"
:host="note.user.host"
@click.stop="openServerInfo"
/>
</div>
@ -74,15 +73,11 @@ const showTicker =
note.value.user.instance);
function openServerInfo() {
if (
(props.canOpenServerInfo && !defaultStore.state.openServerInfo) ||
!note.value.user.instance
)
return;
if (!props.canOpenServerInfo || !defaultStore.state.openServerInfo) return;
const instanceInfoUrl =
props.host == null
note.value.user.host == null
? "/about"
: `/instance-info/${note.value.user.instance}`;
: `/instance-info/${note.value.user.host}`;
pageWindow(instanceInfoUrl);
}
</script>