Merge branch 'VM/RED-7880' into 'master'

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

Closes RED-7880

See merge request redactmanager/red-ui!250
This commit is contained in:
Dan Percic 2024-01-11 15:23:39 +01:00
commit 4a76e10751
3 changed files with 4 additions and 2 deletions

View File

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

View File

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

View File

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