feat(editor): Use i18n component instead od v-html for localization
* feat(editor): Export i18n instance and bind it to Vue instance * feat(editor): Audit usage of v-html and replace with alternatives where possible * 🔀 Fix conflicted element in RunDataTable * ♻️ Refactor issues elements with the new TitledList component * 🐛 Fixing unknown node modal dialog content rendering Co-authored-by: Milorad Filipovic <milorad@n8n.io>
This commit is contained in:
@@ -19,7 +19,7 @@ import router from './router';
|
||||
|
||||
import { runExternalHook } from './components/mixins/externalHooks';
|
||||
import { TelemetryPlugin } from './plugins/telemetry';
|
||||
import { I18nPlugin } from './plugins/i18n';
|
||||
import { I18nPlugin, i18nInstance } from './plugins/i18n';
|
||||
|
||||
import { store } from './store';
|
||||
|
||||
@@ -32,6 +32,7 @@ Vue.use(TelemetryPlugin);
|
||||
Vue.use((vue) => I18nPlugin(vue, store));
|
||||
|
||||
new Vue({
|
||||
i18n: i18nInstance,
|
||||
router,
|
||||
store,
|
||||
render: h => h(App),
|
||||
|
||||
Reference in New Issue
Block a user