diff --git a/src/app/features/global-masters/states/pages/state-list/state-list.html b/src/app/features/global-masters/states/pages/state-list/state-list.html
index 043f6098..060889ab 100644
--- a/src/app/features/global-masters/states/pages/state-list/state-list.html
+++ b/src/app/features/global-masters/states/pages/state-list/state-list.html
@@ -1,41 +1,3 @@
-
-
-
-
+>
+
+
+
+
+
+
+
+
(null);
readonly deletingId = signal(null);
readonly pendingDeleteState = signal(null);
+ readonly showFilters = signal(false);
readonly deleteConfirmDialog = viewChild(ConfirmDialog);
readonly countryFilterForm = this.formBuilder.nonNullable.group({
@@ -121,6 +122,10 @@ export class StateList implements OnInit {
});
}
+ onToggleFilters(): void {
+ this.showFilters.update(value => !value);
+ }
+
onFilterCountrySelected(country: CountryLookupDto | null): void {
this.selectedCountryLookup.set(country);
this.countryFilterForm.controls.countryId.setValue(country ? country.id : '');