@ -35,7 +35,7 @@ describe('DialogService', () => {
expect(notification.displayTime).toBe(10000);
expect(notification.message).toBe('MyInfo');
expect(notification.messageType).toBe('info');
expect(notification.messageType).toBe('primary');
});
[true, false].forEach(confirmed => {
@ -80,7 +80,7 @@ export class Notification {
}
public static info(message: string | ErrorDto): Notification {
return new Notification(message, 'info');
return new Notification(message, 'primary');
@ -4,5 +4,5 @@
</span>
</ng-container>
<ng-template #html>
<div class="htms-value" [innerHTML]="value.html"></div>
<div class="html-value" [innerHTML]="value.html"></div>
</ng-template>
@ -29,7 +29,7 @@
</div>
</li>
<ng-container *ngIf="!isCollapsed" @fade [style.height]="getContainerHeight()">
<div *ngIf="!isCollapsed" @fade [style.height]="getContainerHeight()">
<ng-container *ngIf="!forContent; else simpleMode">
<li *ngFor="let schema of filteredSchemas; trackBy: trackBySchema" class="nav-item truncate" [style.height]="getItemHeight()"
cdkDrag
@ -52,7 +52,7 @@
</a>
<div class="drop-indicator"></div>
</ul>