Skip to content
Draft
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
30 changes: 20 additions & 10 deletions ui/ui-frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ export class ArchiveUnitDipService {
public dialog: MatDialog,
) {}

private readonly maxWithInVw = '800px';

launchExportDipModal(
listOfUACriteriaSearch: SearchCriteriaEltDto[],
selectedItemCountKnown: boolean,
Expand Down Expand Up @@ -96,6 +98,7 @@ export class ArchiveUnitDipService {
tenantIdentifier,
selectedItemCountKnown,
},
maxWidth: this.maxWithInVw,
});
dialogRef.afterClosed().subscribe((result) => {
if (result) {
Expand Down Expand Up @@ -169,7 +172,9 @@ export class ArchiveUnitDipService {
tenantIdentifier,
selectedItemCountKnown,
},
maxWidth: this.maxWithInVw,
});

dialogRef.afterClosed().subscribe((result) => {
if (result) {
return;
Expand Down