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

This commit is contained in:
Bram Kragten 2020-01-13 14:31:53 +01:00 committed by Paulus Schoutsen
parent 22792c70c5
commit 5c32413bf7

View File

@ -270,7 +270,7 @@ class OnboardingCoreConfig extends LitElement {
});
} catch (err) {
this._working = false;
alert("FAIL");
alert(`Failed to save: ${err.message}`);
}
}