Skip to content

Commit a6ab745

Browse files
committed
chore: remove id column from application detail component
Signed-off-by: Philip Miglinci <pmig@glasskube.com>
1 parent 90fe4c0 commit a6ab745

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

frontend/ui/src/app/applications/application-detail.component.html

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,6 @@ <h3 class="text-2xl font-bold tracking-tight text-gray-900 dark:text-white">
181181
</button>
182182
</td>
183183
} @else {
184-
<th scope="col" class="px-6 py-3">ID</th>
185184
<th scope="col" class="px-6 py-3">Version</th>
186185
@if (application.type === 'kubernetes') {
187186
<th scope="col" class="px-6 py-3">Chart URL</th>
@@ -212,14 +211,12 @@ <h3 class="text-2xl font-bold tracking-tight text-gray-900 dark:text-white">
212211
}
213212
</td>
214213
}
215-
<td class="px-1 py-4">
216-
<app-uuid [uuid]="version.id!" [small]="true"></app-uuid>
217-
</td>
218214
<th
219215
scope="row"
220216
[class.text-gray-900]="!archived"
221217
[class.dark:text-white]="!archived"
222-
class="px-6 py-4 font-medium whitespace-nowrap">
218+
class="px-6 py-4 font-medium whitespace-nowrap max-w-64 overflow-hidden text-ellipsis"
219+
[title]="version.name">
223220
{{ version.name }}
224221
</th>
225222
@if (application.type === 'kubernetes') {

0 commit comments

Comments
 (0)