diff options
| author | かっこかり <67428053+kakkokari-gtyih@users.noreply.github.com> | 2025-12-30 16:39:07 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-30 16:39:07 +0900 |
| commit | 3fe0477cace4766ce5a59d98aa003ebef8576e81 (patch) | |
| tree | ecca28e0f12b5599c29768978d012d55f79704df | |
| parent | enhance(frontend): ウィジェットの設定項目の多言語対応 (#17032) (diff) | |
| download | misskey-3fe0477cace4766ce5a59d98aa003ebef8576e81.tar.gz misskey-3fe0477cace4766ce5a59d98aa003ebef8576e81.tar.bz2 misskey-3fe0477cace4766ce5a59d98aa003ebef8576e81.zip | |
fix(frontend): ディレクティブの型が当たらない問題を修正 (#17049)
| -rw-r--r-- | packages/frontend/src/directives/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/directives/index.ts b/packages/frontend/src/directives/index.ts index 07b756b95d..a88778efaf 100644 --- a/packages/frontend/src/directives/index.ts +++ b/packages/frontend/src/directives/index.ts @@ -39,7 +39,7 @@ export const directives = { } as Record<string, Directive>; declare module 'vue' { - export interface ComponentCustomProperties { + export interface GlobalDirectives { vUserPreview: typeof userPreviewDirective; vGetSize: typeof getSizeDirective; vRipple: typeof rippleDirective; |