This commit is contained in:
burnettk 2025-02-13 19:47:31 -05:00
parent 587373c0d5
commit 0d30f3fb87
No known key found for this signature in database
2 changed files with 4 additions and 1 deletions

View File

@ -7,6 +7,7 @@ import {
TableHead,
TableRow,
Paper,
Typography,
} from '@mui/material';
import { AuthenticationItem } from '../interfaces';
import HttpService from '../services/HttpService';
@ -100,6 +101,7 @@ export default function AuthenticationList() {
if (authenticationList) {
return (
<>
<Typography variant="h1">Authentications</Typography>
{buildTable()}
<AuthenticationConfiguration />
</>

View File

@ -9,6 +9,7 @@ import {
TableHead,
TableRow,
Paper,
Typography,
} from '@mui/material';
import { MdDelete } from 'react-icons/md';
import PaginationForTable from '../components/PaginationForTable';
@ -133,7 +134,7 @@ export default function SecretList() {
if (pagination) {
return (
<div>
<h1>Secrets</h1>
<Typography variant="h1">Secrets</Typography>
{SecretsDisplayArea()}
<Button variant="contained" href="/newui/configuration/secrets/new">
Add a secret