Onboarding core: Display error message when saving fails (#4462)

This commit is contained in:
Bram Kragten
2020-01-13 05:31:53 -08:00
committed by Paulus Schoutsen
parent 22792c70c5
commit 5c32413bf7
+1 -1
View File
@@ -270,7 +270,7 @@ class OnboardingCoreConfig extends LitElement {
});
} catch (err) {
this._working = false;
alert("FAIL");
alert(`Failed to save: ${err.message}`);
}
}