Skip to content

Commit 2c6ccf9

Browse files
authored
Bugfix/table col width fix, changed pwa app name (#3929)
* changed pwa app name * admin table row styles
1 parent ee06bf3 commit 2c6ccf9

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

src/app/ubs/ubs-admin/components/ubs-admin-table/ubs-admin-table.component.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ mat-header-cell {
5656
line-height: 2.8;
5757
padding: 0;
5858
width: auto;
59+
min-width: 48px;
5960

6061
.column-title {
6162
display: block;
@@ -559,7 +560,8 @@ mat-spinner {
559560
display: flex;
560561
flex-direction: column;
561562
align-items: center;
562-
padding: 0 5px;
563+
padding: 0 10px;
564+
box-sizing: content-box;
563565
}
564566

565567
.column_cell {

src/app/ubs/ubs-admin/components/ubs-admin-table/ubs-admin-table.component.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1000,10 +1000,7 @@ export class UbsAdminTableComponent implements OnInit, OnDestroy {
10001000
const width = this.defaultColumnsWidth.get(this.columns[i].title.key);
10011001
col.style.width = width + 'px';
10021002
}
1003-
this.adminTableService
1004-
.setUbsAdminOrdersTableColumnsWidthPreference(this.defaultColumnsWidth)
1005-
.pipe(takeUntilDestroyed(this.destroyRef))
1006-
.subscribe();
1003+
this.adminTableService.setUbsAdminOrdersTableColumnsWidthPreference(this.defaultColumnsWidth).subscribe();
10071004
}
10081005

10091006
getOrderTotalElements(): void {

src/manifest.webmanifest

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "GreenCity",
3-
"short_name": "GreenCity",
2+
"name": "Pick Up City",
3+
"short_name": "Pick Up City",
44
"theme_color": "#13AA57",
55
"background_color": "#fafafa",
66
"display": "standalone",

0 commit comments

Comments
 (0)