mirror of
https://github.com/portainer/portainer.git
synced 2025-07-24 15:59:41 +02:00
improvement(kubernetes): right align tags in datatables R8S-250 (#601)
Co-authored-by: testA113 <aliharriss1995@gmail.com>
This commit is contained in:
parent
3800249921
commit
f6f07f4690
23 changed files with 68 additions and 55 deletions
|
@ -43,7 +43,11 @@ function Cell({
|
|||
</Link>
|
||||
)}
|
||||
|
||||
{isSystem ? <SystemBadge /> : !item.ApplicationOwner && <ExternalBadge />}
|
||||
{isSystem ? (
|
||||
<SystemBadge className="ml-auto" />
|
||||
) : (
|
||||
!item.ApplicationOwner && <ExternalBadge className="ml-auto" />
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
@ -31,7 +31,7 @@ function NamespaceCell({ row, getValue }: CellContext<Application, string>) {
|
|||
>
|
||||
{value}
|
||||
</Link>
|
||||
{isSystem && <SystemBadge />}
|
||||
{isSystem && <SystemBadge className="ml-auto" />}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
@ -30,7 +30,7 @@ function NamespaceCell({ row, getValue }: CellContext<Stack, string>) {
|
|||
>
|
||||
{value}
|
||||
</Link>
|
||||
{isSystem && <SystemBadge />}
|
||||
{isSystem && <SystemBadge className="ml-auto" />}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue