Enhancement: add duration format to customapi widget (#4549)

Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com>
This commit is contained in:
Peder Toftegaard Olsen
2025-01-03 04:11:33 +01:00
committed by GitHub
parent 3020a2d1fd
commit 6f429a6a4b
2 changed files with 6 additions and 1 deletions

View File

@@ -78,6 +78,9 @@ function formatValue(t, mapping, rawValue) {
case "percent":
value = t("common.percent", { value });
break;
case "duration":
value = t("common.duration", { value });
break;
case "bytes":
value = t("common.bytes", { value });
break;