You've already forked nginx-proxy-manager
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:
@@ -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({
|
||||
|
||||
Reference in New Issue
Block a user