This commit is contained in:
2020-06-20 13:21:04 +00:00
parent 7a99adfb4c
commit 727cb6d234
19 changed files with 72 additions and 243 deletions

View File

@@ -399,17 +399,8 @@ function generateMenu(vm) {
/////////////////////////////////
//
//
function initForm(vm) {
return new Promise(function(resolve, reject) {
(async function() {
try {
await fetchTranslatedText(vm);
} catch (err) {
reject(err);
}
resolve();
})();
});
async function initForm(vm) {
await fetchTranslatedText(vm);
}
//////////////////////////////////////////////////////////