Skip to content

Commit d408f60

Browse files
committed
feat: enable create and update of tag-based rules with dynamic conditions
1 parent 00cc50a commit d408f60

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

frontend/src/app/app-module/guides/guide-winlogbeat/guide-winlogbeat.component.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ <h4 class="card-title mb-0 text-primary">
1414
<ul class="mt-3 pl-3" style="list-style-type: circle !important;">
1515
<li>Compatible with Windows Server version 2016 R2 or higher</li>
1616
<li>The UTMStack agents communicate over ports 9000 and 50051. Please make sure these ports are open.</li>
17+
<li>Ensure curl is installed on the system, as it is required for downloading and installing the UTMStack agent.</li>
1718
</ul>
1819
</li>
1920
<li>

frontend/src/app/data-management/alert-management/alert-rules/alert-rules.component.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ import {AlertRuleCreateComponent} from '../shared/components/alert-rule-create/a
1414
import {AlertRulesService} from '../shared/services/alert-rules.service';
1515
import {AlertTagService} from '../shared/services/alert-tag.service';
1616
import {AlertRuleType} from './alert-rule.type';
17-
import {AlertRuleCreateComponent} from '../shared/components/alert-rule-create/alert-rule-create.component';
18-
import {FALSE_POSITIVE_OBJECT} from '../../../shared/constants/alert/alert-field.constant';
1917

2018
@Component({
2119
selector: 'app-rules',

frontend/src/app/data-management/alert-management/shared/components/alert-rule-create/alert-rule-create.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@
137137
placement="left"
138138
(click)="removeRuleCondition(i)"></i>
139139
</div>
140-
<div class="d-flex justify-content-end mt-2">
140+
<div *ngIf="action != 'select'" class="d-flex justify-content-end mt-2">
141141
<button class="btn utm-button btn-success align-self-end" (click)="addRuleCondition()">
142142
<i class="icon-plus22"></i>&nbsp;
143143
Add

0 commit comments

Comments
 (0)