diff --git a/CHANGELOG.md b/CHANGELOG.md
index d699a9c35..fc15adeb4 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,4 +4,5 @@
### Bug Fixes
-- Improved exception handling in `automaticReview` to prevent the process from stopping due to errors, ensuring the system continues evaluating alerts even if a specific rule fails.
-- Improved operator selection for more accurate and consistent filtering.
--- Introduced new compliance reports aligned with the PCI DSS standard to expand auditing capabilities.
\ No newline at end of file
+-- Introduced new compliance reports aligned with the PCI DSS standard to expand auditing capabilities.
+-- Enabled creation and update of tag-based rules with dynamic conditions.
\ No newline at end of file
diff --git a/frontend/src/app/data-management/alert-management/alert-rules/alert-rules.component.html b/frontend/src/app/data-management/alert-management/alert-rules/alert-rules.component.html
index 1a038d97e..8019eca69 100644
--- a/frontend/src/app/data-management/alert-management/alert-rules/alert-rules.component.html
+++ b/frontend/src/app/data-management/alert-management/alert-rules/alert-rules.component.html
@@ -8,7 +8,7 @@
Alerts rules
Manage alerts
diff --git a/frontend/src/app/data-management/alert-management/alert-rules/alert-rules.component.ts b/frontend/src/app/data-management/alert-management/alert-rules/alert-rules.component.ts
index db456d788..c70732977 100644
--- a/frontend/src/app/data-management/alert-management/alert-rules/alert-rules.component.ts
+++ b/frontend/src/app/data-management/alert-management/alert-rules/alert-rules.component.ts
@@ -5,10 +5,12 @@ import {NgbModal} from '@ng-bootstrap/ng-bootstrap';
import {SourcesService} from '../../../admin/sources/sources.service';
import {UtmToastService} from '../../../shared/alert/utm-toast.service';
import {ModalConfirmationComponent} from '../../../shared/components/utm/util/modal-confirmation/modal-confirmation.component';
+import {FALSE_POSITIVE_OBJECT} from '../../../shared/constants/alert/alert-field.constant';
import {ITEMS_PER_PAGE} from '../../../shared/constants/pagination.constants';
import {SortEvent} from '../../../shared/directives/sortable/type/sort-event';
import {AlertTags} from '../../../shared/types/alert/alert-tag.type';
import {TimeFilterType} from '../../../shared/types/time-filter.type';
+import {AlertRuleCreateComponent} from '../shared/components/alert-rule-create/alert-rule-create.component';
import {AlertRulesService} from '../shared/services/alert-rules.service';
import {AlertTagService} from '../shared/services/alert-tag.service';
import {AlertRuleType} from './alert-rule.type';
diff --git a/frontend/src/app/data-management/alert-management/shared/components/alert-rule-create/alert-rule-create.component.html b/frontend/src/app/data-management/alert-management/shared/components/alert-rule-create/alert-rule-create.component.html
index 71cc4e550..4178566cd 100644
--- a/frontend/src/app/data-management/alert-management/shared/components/alert-rule-create/alert-rule-create.component.html
+++ b/frontend/src/app/data-management/alert-management/shared/components/alert-rule-create/alert-rule-create.component.html
@@ -1,4 +1,5 @@
-
+
-
-
-
-
-
-
-
+
-
-
+
+
By creating a False Positive rule, future alerts where the fields
and values match the operator defined will be tagged as False positive.
The alerts that match with this rule will be marked as Completed.
+