From e855652201641e78ca49815ce098564c99125db2 Mon Sep 17 00:00:00 2001 From: KenTandrian Date: Sun, 8 Mar 2026 13:12:59 +0700 Subject: [PATCH] fix(lib): make filteredOptions readonly --- libs/ui/src/lib/tags-selector/tags-selector.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ui/src/lib/tags-selector/tags-selector.component.ts b/libs/ui/src/lib/tags-selector/tags-selector.component.ts index a77721bd6..ee33697b9 100644 --- a/libs/ui/src/lib/tags-selector/tags-selector.component.ts +++ b/libs/ui/src/lib/tags-selector/tags-selector.component.ts @@ -64,7 +64,7 @@ export class GfTagsSelectorComponent @Input() tags: Tag[]; @Input() tagsAvailable: Tag[]; - public filteredOptions: Subject = new BehaviorSubject([]); + public readonly filteredOptions: Subject = new BehaviorSubject([]); public readonly separatorKeysCodes: number[] = [COMMA, ENTER]; public readonly tagInputControl = new FormControl(''); public readonly tagsSelected = signal([]);