diff --git a/apps/red-ui/src/app/modules/admin/screens/audit/audit-screen.component.html b/apps/red-ui/src/app/modules/admin/screens/audit/audit-screen.component.html index dc0f6fe5c..2c24e476d 100644 --- a/apps/red-ui/src/app/modules/admin/screens/audit/audit-screen.component.html +++ b/apps/red-ui/src/app/modules/admin/screens/audit/audit-screen.component.html @@ -27,8 +27,12 @@
- - + + {{ (translations[category] | translate) || category }} @@ -37,7 +41,7 @@
- +
- +
@@ -60,7 +64,13 @@
ยท
- + @@ -70,7 +80,13 @@
- + diff --git a/apps/red-ui/src/app/modules/admin/screens/audit/audit-screen.component.scss b/apps/red-ui/src/app/modules/admin/screens/audit/audit-screen.component.scss index 0b9886d50..d603928a8 100644 --- a/apps/red-ui/src/app/modules/admin/screens/audit/audit-screen.component.scss +++ b/apps/red-ui/src/app/modules/admin/screens/audit/audit-screen.component.scss @@ -1,5 +1,11 @@ -:host ::ng-deep iqser-table iqser-table-header .header-item { - justify-content: space-between; +:host ::ng-deep { + iqser-table iqser-table-header .header-item { + justify-content: space-between; + } + + .mat-mdc-form-field .mat-mdc-text-field-wrapper { + border-radius: 10px; + } } form { diff --git a/apps/red-ui/src/app/modules/shared/components/pagination/pagination.component.html b/apps/red-ui/src/app/modules/shared/components/pagination/pagination.component.html index e1a7651a5..8a0db3f0d 100644 --- a/apps/red-ui/src/app/modules/shared/components/pagination/pagination.component.html +++ b/apps/red-ui/src/app/modules/shared/components/pagination/pagination.component.html @@ -1,4 +1,10 @@ -
+
|
{{ displayValue(page) }}
| -
+
diff --git a/apps/red-ui/src/app/modules/shared/components/pagination/pagination.component.ts b/apps/red-ui/src/app/modules/shared/components/pagination/pagination.component.ts index 0b465516b..0c1a5ff74 100644 --- a/apps/red-ui/src/app/modules/shared/components/pagination/pagination.component.ts +++ b/apps/red-ui/src/app/modules/shared/components/pagination/pagination.component.ts @@ -40,6 +40,10 @@ export class PaginationComponent { return page === '...' ? page : (page as number) + 1; } + isNumber(page) { + return Number.isInteger(page); + } + private _updatePagesArray() { this.displayedPages = [0]; if (Math.max(1, this.currentPage - 1) > 1) {