mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-12 23:54:07 -08:00
🔥 Remove error message
This commit is contained in:
parent
e64c44291f
commit
89b388e470
|
@ -2697,8 +2697,12 @@ export default mixins(
|
||||||
await Promise.all(loadPromises);
|
await Promise.all(loadPromises);
|
||||||
|
|
||||||
if (this.defaultLocale !== 'en') {
|
if (this.defaultLocale !== 'en') {
|
||||||
const headers = await this.restApi().getNodeTranslationHeaders();
|
try {
|
||||||
addHeaders(headers, this.defaultLocale);
|
const headers = await this.restApi().getNodeTranslationHeaders();
|
||||||
|
addHeaders(headers, this.defaultLocale);
|
||||||
|
} catch (_) {
|
||||||
|
// no headers available
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
this.$showError(
|
this.$showError(
|
||||||
|
|
Loading…
Reference in a new issue