Fixed note-editor bug that would raise error on edit when no notes are present

This commit is contained in:
Mindaugas Vasiliauskas 2020-02-14 15:51:28 +02:00
parent 4bef159546
commit 1dbb6ca677

View file

@ -6,7 +6,7 @@ function editNotes(id, name) {
for (const note of notes) {select.options.add(new Option(note.id, note.id));}
// select an object
if (notes.length) {
if (notes.length || id) {
if (!id) id = notes[0].id;
let note = notes.find(note => note.id === id);
if (note === undefined) {
@ -19,10 +19,9 @@ function editNotes(id, name) {
notesName.value = note.name;
notesText.value = note.legend;
} else {
if (!notes.length) {
const value = "There are no added notes. Click on element (e.g. label) and add a free text note";
document.getElementById("notesText").value = value;
}
document.getElementById("notesName").value = "";
}
// open a dialog