1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-23 15:29:42 +02:00

refactor(kube/namespaces): migrate item apps table to react [EE-4693] (#11012)

This commit is contained in:
Chaim Lev-Ari 2024-04-02 22:55:34 +03:00 committed by GitHub
parent d99486ee72
commit 9c68c6c9f3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 135 additions and 231 deletions

View file

@ -0,0 +1,5 @@
import _ from 'lodash';
export function cpuHumanValue(value: number) {
return _.round(value, 2);
}