Browse Source

Improve coupon management

pull/6794/head
Thomas Kaul 4 weeks ago
parent
commit
5ba8dd5bbd
  1. 4
      apps/client/src/app/components/access-table/access-table.component.html
  2. 4
      apps/client/src/app/components/admin-jobs/admin-jobs.html
  3. 4
      apps/client/src/app/components/admin-market-data/admin-market-data.html
  4. 8
      apps/client/src/app/components/admin-overview/admin-overview.html
  5. 4
      apps/client/src/app/components/admin-users/admin-users.html

4
apps/client/src/app/components/access-table/access-table.component.html

@ -53,9 +53,9 @@
</ng-container>
<ng-container matColumnDef="actions" stickyEnd>
<th *matHeaderCellDef class="px-1 text-center" mat-header-cell></th>
<th *matHeaderCellDef class="px-1 text-right" mat-header-cell></th>
<td *matCellDef="let element" class="px-1 text-center" mat-cell>
<td *matCellDef="let element" class="px-1 text-right" mat-cell>
<button
class="mx-1 no-min-width px-2"
mat-button

4
apps/client/src/app/components/admin-jobs/admin-jobs.html

@ -188,7 +188,7 @@
</ng-container>
<ng-container matColumnDef="actions" stickyEnd>
<th *matHeaderCellDef class="px-1 py-2" mat-header-cell>
<th *matHeaderCellDef class="px-1 py-2 text-right" mat-header-cell>
<button
class="mx-1 no-min-width px-2"
mat-button
@ -203,7 +203,7 @@
</button>
</mat-menu>
</th>
<td *matCellDef="let element" class="px-1 py-2" mat-cell>
<td *matCellDef="let element" class="px-1 py-2 text-right" mat-cell>
<button
class="mx-1 no-min-width px-2"
mat-button

4
apps/client/src/app/components/admin-market-data/admin-market-data.html

@ -206,7 +206,7 @@
</ng-container>
<ng-container matColumnDef="actions" stickyEnd>
<th *matHeaderCellDef class="px-1 text-center" mat-header-cell>
<th *matHeaderCellDef class="px-1 text-right" mat-header-cell>
<button
class="mx-1 no-min-width px-2"
mat-button
@ -243,7 +243,7 @@
</button>
</mat-menu>
</th>
<td *matCellDef="let element" class="px-1 text-center" mat-cell>
<td *matCellDef="let element" class="px-1 text-right" mat-cell>
<button
class="mx-1 no-min-width px-2"
mat-button

8
apps/client/src/app/components/admin-overview/admin-overview.html

@ -168,10 +168,14 @@
</ng-container>
<ng-container matColumnDef="duration">
<th *matHeaderCellDef class="px-1" mat-header-cell>
<th *matHeaderCellDef class="px-1 text-right" mat-header-cell>
<ng-container i18n>Duration</ng-container>
</th>
<td *matCellDef="let element" class="px-1" mat-cell>
<td
*matCellDef="let element"
class="px-1 text-right"
mat-cell
>
{{ formatStringValue(element.duration) }}
</td>
</ng-container>

4
apps/client/src/app/components/admin-users/admin-users.html

@ -198,12 +198,12 @@
<ng-container matColumnDef="actions" stickyEnd>
<th
*matHeaderCellDef
class="mat-mdc-header-cell px-1 py-2"
class="mat-mdc-header-cell px-1 py-2 text-right"
mat-header-cell
></th>
<td
*matCellDef="let element"
class="mat-mdc-cell px-1 py-2"
class="mat-mdc-cell px-1 py-2 text-right"
mat-cell
>
<button

Loading…
Cancel
Save