Skip to content

Commit

Permalink
fix(pci.rancher): update ts
Browse files Browse the repository at this point in the history
ref: TAPC-1615
Signed-off-by: Pierre-Philippe <[email protected]>
  • Loading branch information
Pierre-Philippe committed Oct 10, 2024
1 parent 92be18c commit 844dba0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ import { RancherService } from '@/types/api.type';
import '../Table.scss';

interface DisplayCellInterface {
cell: Cell<RancherService, unknown>;
cell: Cell<RancherService, number>;
}

function DisplayCellNumber({ cell }: Readonly<DisplayCellInterface>) {
const number = cell.renderValue() as number;
const number = cell.renderValue();
return <OsdsText color={ODS_THEME_COLOR_INTENT.text}>{number}</OsdsText>;
}

Expand Down

0 comments on commit 844dba0

Please sign in to comment.