Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ <h4 class="card-title mb-0 text-primary">
<ul class="mt-3 pl-3" style="list-style-type: circle !important;">
<li>Compatible with Windows Server version 2016 R2 or higher</li>
<li>The UTMStack agents communicate over ports 9000 and 50051. Please make sure these ports are open.</li>
<li>Ensure curl is installed on the system, as it is required for downloading and installing the UTMStack agent.</li>
</ul>
</li>
<li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ import {AlertRuleCreateComponent} from '../shared/components/alert-rule-create/a
import {AlertRulesService} from '../shared/services/alert-rules.service';
import {AlertTagService} from '../shared/services/alert-tag.service';
import {AlertRuleType} from './alert-rule.type';
import {AlertRuleCreateComponent} from '../shared/components/alert-rule-create/alert-rule-create.component';
import {FALSE_POSITIVE_OBJECT} from '../../../shared/constants/alert/alert-field.constant';

@Component({
selector: 'app-rules',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@
placement="left"
(click)="removeRuleCondition(i)"></i>
</div>
<div class="d-flex justify-content-end mt-2">
<div *ngIf="action != 'select'" class="d-flex justify-content-end mt-2">
<button class="btn utm-button btn-success align-self-end" (click)="addRuleCondition()">
<i class="icon-plus22"></i>&nbsp;
Add
Expand Down
Loading