RED-7880 - Incorrect Error Handling for Missing Type and Dictionary Display in Compare Mode

This commit is contained in:
Valentin Mihai 2024-01-11 16:21:46 +02:00
parent 51ca27340e
commit 4426a37dfd
3 changed files with 4 additions and 2 deletions

View File

@ -42,7 +42,7 @@
.entries { .entries {
flex-grow: 1; flex-grow: 1;
padding: 24px 32px; padding: 16px 0 16px 12px;
.header-wrapper { .header-wrapper {
display: flex; display: flex;

View File

@ -17,7 +17,7 @@ export class DossiersDialogService extends DialogService<DialogType> {
}, },
editDossier: { editDossier: {
component: EditDossierDialogComponent, component: EditDossierDialogComponent,
dialogConfig: { ...largeDialogConfig, width: '95vw', maxWidth: '95vw' }, dialogConfig: { ...largeDialogConfig, width: '98vw', maxWidth: '98vw' },
}, },
importRedactions: { importRedactions: {
component: ImportRedactionsDialogComponent, component: ImportRedactionsDialogComponent,

View File

@ -102,6 +102,8 @@ export class EditorComponent implements OnInit, OnChanges {
automaticLayout: true, automaticLayout: true,
readOnly: !this.canEdit, readOnly: !this.canEdit,
extraEditorClassName: this.canEdit ? '' : 'disabled', extraEditorClassName: this.canEdit ? '' : 'disabled',
lineNumbersMinChars: 2,
folding: false,
}; };
} }