Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit eab04b4f authored by Joze RIHTARSIC's avatar Joze RIHTARSIC
Browse files

Pull request #146: [EDELIVERY-13955] Document-edit: limit to max 20 rows per page

Merge in EDELIVERY/smp from bugfix/EDELIVERY-13955-ui-review-document-process-edit-document-page-is-not-looking-properly-when to development

* commit '92a09825':
  [EDELIVERY-13772] Fix the domain code label
  [EDELIVERY-13955] Document-edit: limit to max 20 rows per page
parents 2e38bcfa 92a09825
No related branches found
No related tags found
No related merge requests found
Pipeline #209129 failed
......@@ -56,7 +56,7 @@
</tr>
</table>
</div>
<mat-paginator [pageSizeOptions]="[5, 10, 25, 100]" showFirstLastButtons
<mat-paginator [pageSizeOptions]="[5, 10, 15, 20]" showFirstLastButtons
[pageSize]="10" [length]="eventDataSource.data?.length"
attr.aria-label="{{ 'document.events.panel.label.select.page' | translate }}"></mat-paginator>
......
......@@ -64,7 +64,7 @@
</tr>
</table>
</div>
<mat-paginator [pageSizeOptions]="[5, 10, 25, 100]" showFirstLastButtons
<mat-paginator [pageSizeOptions]="[5, 10, 15, 20]" showFirstLastButtons
[pageSize]="10" [length]="propertyDataSource.data?.length"
attr.aria-label="{{ 'document.properties.panel.label.select.page' | translate }}"></mat-paginator>
......
......@@ -51,7 +51,7 @@
</tr>
</table>
</div>
<mat-paginator [pageSizeOptions]="[5, 10, 25, 100]" showFirstLastButtons
<mat-paginator [pageSizeOptions]="[5, 10, 15, 20]" showFirstLastButtons
[pageSize]="10" [length]="versionDataSource.data?.length"
attr.aria-label="{{ 'document.versions.panel.label.select.page' | translate }}"></mat-paginator>
......
......@@ -249,6 +249,7 @@ export class AdminDomainComponent implements OnInit, OnDestroy, AfterViewInit, B
status: EntityStatus.NEW,
smlRegistered: false,
smlClientCertAuth: false,
adminMemberCount: 0,
}
}
......
......@@ -8,7 +8,7 @@
type="warning"
[htmlContent]="warningMessage"></smp-warning-panel>
<mat-form-field style="width:100%">
<mat-label>{{ "domain.panel.label.domain" | translate: {value: domainForm.controls['adminMemberCount'].value} }}</mat-label>
<mat-label>{{ "domain.panel.label.domain" | translate }}</mat-label>
<input matInput
id="domainCode_id" #domainCode
matTooltip="{{ 'domain.panel.tooltip.domain' | translate }}"
......
......@@ -585,7 +585,7 @@
"domain.panel.button.reset": "Reset",
"domain.panel.button.save": "Save",
"domain.panel.label.domain": "Domain Code [{{value}}]",
"domain.panel.label.domain": "Domain Code",
"domain.panel.label.domain.already.exists": "The Domain code already exists!",
"domain.panel.label.domain.default.resource.type": "Default resource type for the domain",
"domain.panel.label.domain.mandatory": "Domain code must contain only chars and numbers and must be less than 63 chars long.",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment