Skip to content

Commit 7c1f7b9

Browse files
committed
Fix issue with export data not updating without fully closing & opening
1 parent 50eae37 commit 7c1f7b9

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/ui/entry.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -459,6 +459,9 @@ async function entry(_ui: UI) {
459459
},
460460
editEntry: () => {
461461
_ui.instance.class.edit = !_ui.instance.class.edit;
462+
if (!_ui.instance.class.edit) {
463+
_ui.instance.updateEntries();
464+
}
462465
const codes = document.getElementById('codes');
463466
if (codes) {
464467
// wait vue apply changes to dom

0 commit comments

Comments
 (0)