1
0
mirror of https://github.com/NginxProxyManager/nginx-proxy-manager.git synced 2025-11-04 04:11:42 +03:00

Use status components for true/false things

This commit is contained in:
Jamie Curnow
2025-10-27 23:25:00 +10:00
parent fac5f2cbc5
commit 0f718570d6
12 changed files with 60 additions and 53 deletions

View File

@@ -5,9 +5,9 @@ import type { User } from "src/api/backend";
import {
EmailFormatter,
EmptyData,
EnabledFormatter,
GravatarFormatter,
RolesFormatter,
TrueFalseFormatter,
ValueWithDateFormatter,
} from "src/components";
import { TableLayout } from "src/components/Table/TableLayout";
@@ -83,7 +83,7 @@ export default function Table({
id: "isDisabled",
header: intl.formatMessage({ id: "column.status" }),
cell: (info: any) => {
return <EnabledFormatter enabled={!info.getValue()} />;
return <TrueFalseFormatter value={!info.getValue()} />;
},
}),
columnHelper.display({