mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-06-11 22:54:13 +02:00
fix(client): fix some routings
This commit is contained in:
@@ -43,8 +43,12 @@ import * as os from '@/os';
|
||||
import { i18n } from '@/i18n';
|
||||
import { definePageMetadata } from '@/scripts/page-metadata';
|
||||
|
||||
const props = defineProps<{
|
||||
webhookId: string;
|
||||
}>();
|
||||
|
||||
const webhook = await os.api('i/webhooks/show', {
|
||||
webhookId: new URLSearchParams(window.location.search).get('id'),
|
||||
webhookId: props.webhookId,
|
||||
});
|
||||
|
||||
let name = $ref(webhook.name);
|
||||
|
||||
Reference in New Issue
Block a user