From ea5eb6be7d4e864a299886e59f441ce1abc2b015 Mon Sep 17 00:00:00 2001 From: Ivan Kalashnikov Date: Thu, 22 Jan 2026 08:35:59 +0700 Subject: [PATCH] fix: import TranslatePipe in dialog share component --- src/app/core/share/dialog-share/dialog-share.component.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/core/share/dialog-share/dialog-share.component.ts b/src/app/core/share/dialog-share/dialog-share.component.ts index c59035113..c6bb53a60 100644 --- a/src/app/core/share/dialog-share/dialog-share.component.ts +++ b/src/app/core/share/dialog-share/dialog-share.component.ts @@ -9,6 +9,7 @@ import { ShareService } from '../share.service'; import { ShareDialogOptions, ShareResult, ShareTarget } from '../share.model'; import { ShareFormatter } from '../share-formatter'; import { T } from '../../../t.const'; +import { TranslatePipe } from '@ngx-translate/core'; interface ShareTargetButton { target: ShareTarget; @@ -29,6 +30,7 @@ interface ShareTargetButton { MatInputModule, MatFormFieldModule, FormsModule, + TranslatePipe, ], }) export class DialogShareComponent {