Skip to content

Commit c0379c9

Browse files
authored
chore(ui): remove id column from application detail component (#1886)
Signed-off-by: Philip Miglinci <pmig@glasskube.com>
1 parent 345dc35 commit c0379c9

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

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

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ <h3 class="text-2xl font-bold tracking-tight text-gray-900 dark:text-white">
171171
</td>
172172
}
173173
@if (selectedVersionIds().size > 0) {
174-
<td class="px-3 normal-case text-sm" [attr.colspan]="application.type === 'kubernetes' ? 8 : 5">
174+
<td class="px-3 normal-case text-sm" [attr.colspan]="application.type === 'kubernetes' ? 7 : 4">
175175
{{ selectedVersionIds().size }} selected
176176
<button
177177
(click)="bulkArchiveVersions(application)"
@@ -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)