Add title to json and ddb export

This commit is contained in:
1ilit
2024-02-28 23:03:40 +02:00
parent a5e1eec3c5
commit 3ab820d7ee
2 changed files with 7 additions and 2 deletions

View File

@@ -163,6 +163,9 @@ export default function ControlPanel({
setRelationships(data.relationships);
setAreas(data.subjectAreas);
setNotes(data.notes);
if (data.title) {
setTitle(data.title);
}
};
const undo = () => {
@@ -880,6 +883,7 @@ export default function ControlPanel({
notes: notes,
subjectAreas: areas,
types: types,
title: title,
},
null,
2
@@ -931,7 +935,7 @@ export default function ControlPanel({
const result = JSON.stringify(
{
author: "Unnamed",
filename: title,
title: title,
date: new Date().toISOString(),
tables: tables,
relationships: relationships,