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 @@ -58,7 +58,7 @@
<app-utm-collapsible-text class="font-size-base" [maxLength]="200" [text]="report.configSolution"></app-utm-collapsible-text>
</div>

<ng-container *ngIf="report.status === 'non_complaint'">
<ng-container *ngIf="report.status === 'non_complaint' && report.configRemediation">
<div class="alert-details w-100 d-flex justify-content-start align-items-center mt-3">
<span class="text-blue-800 font-weight-light mr-2">Compliance remediation:</span>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
grid-template-rows: 0fr;
transition: 300ms ease-in-out;

> div {
div {
overflow: hidden;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import {MenuBehavior} from '../../../../../../behaviors/menu.behavior';
import {NewAlertBehavior} from '../../../../../../behaviors/new-alert.behavior';
import {stringParamToQueryParams} from '../../../../../../util/query-params-to-filter.util';
import {AlertOpenStatusService} from '../../../../../../webflux/alert-open-status.service';
import {Subject} from "rxjs";
import {takeUntil} from "rxjs/operators";
import {Subject} from 'rxjs';
import {takeUntil} from 'rxjs/operators';

@Component({
selector: 'app-utm-notification-alert',
Expand Down
Loading