Skip to content
Snippets Groups Projects
Commit 2eca36df authored by OZGCloud's avatar OZGCloud
Browse files

OZG-6314 Fix empty header bug

parent 037ec241
Branches
Tags
No related merge requests found
......@@ -5,8 +5,8 @@ import { Component, Input } from '@angular/core';
selector: 'ods-attachment-header',
standalone: true,
imports: [CommonModule],
template: `<div class="flex h-11 items-center justify-between px-3">
<h4 class="text-sm font-medium text-text">{{ title }}</h4>
template: `<div class="flex h-11 items-center justify-between px-3 empty:hidden">
<h4 class="text-sm font-medium text-text" *ngIf="title">{{ title }}</h4>
<ng-content select="[action-buttons]"></ng-content>
</div>`,
})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment