From 2038bf07f804a8f8aa56384dfb1f36425aa8cb23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tam=C3=A1s=20Nagy?= Date: Mon, 19 Jan 2026 18:42:27 +0100 Subject: [PATCH] #EX-252: Fix emoji propagation bug --- .../create-category-dialog.component.html | 1 + .../create-category-dialog.component.ts | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/frontend/Exence/src/app/private/transactions-and-categories/create-category-dialog/create-category-dialog.component.html b/frontend/Exence/src/app/private/transactions-and-categories/create-category-dialog/create-category-dialog.component.html index f4086b1..9be8ee8 100644 --- a/frontend/Exence/src/app/private/transactions-and-categories/create-category-dialog/create-category-dialog.component.html +++ b/frontend/Exence/src/app/private/transactions-and-categories/create-category-dialog/create-category-dialog.component.html @@ -86,5 +86,6 @@

New category

\ No newline at end of file diff --git a/frontend/Exence/src/app/private/transactions-and-categories/create-category-dialog/create-category-dialog.component.ts b/frontend/Exence/src/app/private/transactions-and-categories/create-category-dialog/create-category-dialog.component.ts index 599a9bc..6dad01b 100644 --- a/frontend/Exence/src/app/private/transactions-and-categories/create-category-dialog/create-category-dialog.component.ts +++ b/frontend/Exence/src/app/private/transactions-and-categories/create-category-dialog/create-category-dialog.component.ts @@ -15,6 +15,7 @@ import { SnackbarService } from '../../../shared/snackbar/snackbar.service'; import { ValidatorComponent } from '../../../shared/validator/validator.component'; import { CategoryService } from '../../category.service'; import { AutoTrimDirective } from "src/app/shared/auto-trim.directive"; +import { StopPropagationDirective } from "src/app/shared/stop-propagation.directive"; @Component({ selector: 'ex-create-category-dialog', @@ -31,7 +32,8 @@ import { AutoTrimDirective } from "src/app/shared/auto-trim.directive"; InputClearButtonComponent, ButtonComponent, ValidatorComponent, - AutoTrimDirective + AutoTrimDirective, + StopPropagationDirective, ], }) export class CreateCategoryDialogComponent extends DialogComponent {