fix: history table modal links styling
All checks were successful
Build / Build-and-ng-test (pull_request) Successful in 3m58s
Build / Build-and-test-development (pull_request) Successful in 8m24s

This commit is contained in:
Mihajlo Medjedovic 2025-04-02 19:15:29 +02:00
parent 82412b2659
commit c63fcdd465
2 changed files with 9 additions and 4 deletions

View File

@ -24,19 +24,19 @@
<a
*ngIf="ind < 1"
(click)="getTable(approveData[col])"
class="cursor-pointer"
class="cursor-pointer table-link"
>{{ approveData[col] }}</a
>
<div *ngIf="ind < 2 && ind >= 1">
<a
(click)="getBaseTable(approveData[col])"
class="cursor-pointer"
class="cursor-pointer table-link"
>VIEW</a
>
<span> / </span>
<a
(click)="getEditTable(approveData[col])"
class="cursor-pointer"
class="cursor-pointer table-link"
>EDIT</a
>
</div>

View File

@ -34,4 +34,9 @@
#noDataContainer {
height: calc(100vh - 200px);
}
}
.table-link {
text-decoration: underline;
font-weight: bold;
}