Display group name in list after renaming

This commit is contained in:
SillyLossy
2023-04-04 21:04:38 +03:00
parent b295f5a49d
commit ea9ba9d759

View File

@@ -71,6 +71,7 @@ async function _save(group) {
}, },
body: JSON.stringify(group), body: JSON.stringify(group),
}); });
await getCharacters();
} }
@@ -479,7 +480,7 @@ async function editGroup(id, immediately) {
} }
if (immediately) { if (immediately) {
return await _save(); return await _save(group);
} }
saveGroupDebounced(group); saveGroupDebounced(group);