Skip to content

Commit 3e6aa8c

Browse files
renemadsenclaude
andcommitted
style(shared-tags): apply table-actions class so row icons render horizontally
The edit and delete icons in the tag-management dialog were stacking vertically: the wrapper <div> had no flex styling so the two mat-icon-buttons wrapped to two rows even though the column had room for them side-by-side. The colocated SCSS already defined `.table-actions { display: flex; gap: 4px; }` but the class was never applied. Adding it gives the existing rule something to bind to. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent f84f137 commit 3e6aa8c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

eform-client/src/app/common/modules/eform-shared-tags/components/shared-tags/shared-tags.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ <h3 mat-dialog-title>{{ 'Tags management' | translate }}</h3>
4444
</ng-template>
4545

4646
<ng-template #actionsTpl let-row>
47-
<div>
47+
<div class="table-actions">
4848
<button
4949
*ngIf="!row.isLocked"
5050
mat-icon-button

0 commit comments

Comments
 (0)