diff --git a/frontend/src/components/admin/AdminConfigTable.tsx b/frontend/src/components/admin/AdminConfigTable.tsx index 1cea9785..70a5b1bb 100644 --- a/frontend/src/components/admin/AdminConfigTable.tsx +++ b/frontend/src/components/admin/AdminConfigTable.tsx @@ -1,4 +1,12 @@ -import { ActionIcon, Code, Group, Skeleton, Table, Text } from "@mantine/core"; +import { + ActionIcon, + Box, + Code, + Group, + Skeleton, + Table, + Text, +} from "@mantine/core"; import { useModals } from "@mantine/modals"; import { useEffect, useState } from "react"; import { TbEdit, TbLock } from "react-icons/tb"; @@ -43,53 +51,55 @@ const AdminConfigTable = () => { )); return ( -
Key | -Value | -- |
---|---|---|
- {configVariable.key} {" "}
- {configVariable.secret && - |
- - {configVariable.obscured - ? "•".repeat(configVariable.value.length) - : configVariable.value} - | -
- |
-
Key | +Value | ++ |
---|---|---|
+ {configVariable.key} {" "}
+ {configVariable.secret && + |
+ + {configVariable.obscured + ? "•".repeat(configVariable.value.length) + : configVariable.value} + | +
+ |
+
Username |
---|