From d67fa7cb080177c63d89035887d28934ec512de9 Mon Sep 17 00:00:00 2001 From: 1ilit Date: Tue, 23 Jan 2024 09:07:33 +0200 Subject: [PATCH] Fix typo of dbms --- src/components/TypesOverview.jsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/components/TypesOverview.jsx b/src/components/TypesOverview.jsx index 6b173c9..fe47f5b 100644 --- a/src/components/TypesOverview.jsx +++ b/src/components/TypesOverview.jsx @@ -84,8 +84,8 @@ export default function TableOverview() { - This feature is meant for object-relational DBSMs like - PostgreSQL. However, if used for relational DBSMs, a JSON type + This feature is meant for object-relational DBMSs like + PostgreSQL. However, if used for relational DBMSs, a JSON type will be generated with the custom type schema. } @@ -217,10 +217,10 @@ export default function TableOverview() { fields: t.fields.map((e, id) => id === j ? { - ...f, - type: value, - values: f.values ? [...f.values] : [], - } + ...f, + type: value, + values: f.values ? [...f.values] : [], + } : e ), });