docs/merise #20
@ -76,7 +76,7 @@ const data: DataTable[] = [
|
||||
{
|
||||
name: "Adresse e-mail",
|
||||
logical: "email",
|
||||
dbmsType: "VARCHAR[]",
|
||||
dbmsType: "VARCHAR",
|
||||
type: "Alphanumérique",
|
||||
length: 50,
|
||||
dbmsLength: 50,
|
||||
@ -275,8 +275,10 @@ export default function DictionnaryTable(props: DictionnaryTableProps) {
|
||||
</thead>
|
||||
<tbody>
|
||||
<For
|
||||
each={table.columns.filter(
|
||||
(column) => props.isTechnical || !column.hiddenInBasic,
|
||||
each={table.columns.filter((column) =>
|
||||
props.isTechnical
|
||||
? !column.hiddenInTechnical
|
||||
: !column.hiddenInBasic,
|
||||
)}
|
||||
>
|
||||
{(column) => (
|
||||
|
||||
Loading…
Reference in New Issue
Block a user