NestJS backend rewrite; migrate client to FluentUI V9

This commit is contained in:
2025-09-18 15:48:08 +09:00
parent 32ff36a12c
commit 34529cea68
62 changed files with 5642 additions and 3679 deletions

View File

@ -4,6 +4,7 @@ import { BASE_URL } from '../../constants'
import { IObjectParam, IParam } from '../../interfaces/objects'
import TCBParameter from './TCBParameter'
import TableValue from './TableValue'
import { TableCell, TableCellLayout, TableRow } from '@fluentui/react-components'
interface ObjectParameterProps {
showLabel?: boolean;
@ -73,10 +74,19 @@ const ObjectParameter = ({
)
default:
return (
<div>
{name}
{value as string}
</div>
<TableRow>
<TableCell>
<TableCellLayout>
{name}
</TableCellLayout>
</TableCell>
<TableCell>
<TableCellLayout>
{value as string}
</TableCellLayout>
</TableCell>
</TableRow>
)
}
}