Fix native tables in report [SCI-11330]

This commit is contained in:
Anton 2024-12-04 13:15:45 +01:00
parent 8c21dbcc77
commit 88376d33e6

View file

@ -4,6 +4,7 @@ import { mountWithTurbolinks } from '../helpers/turbolinks.js';
window.initReportNativeTableRenderer = (id) => {
const app = createApp({});
app.config.globalProperties.i18n = window.I18n;
app.component('NativeTableRenderer', NativeTableRenderer);
mountWithTurbolinks(app, id);
};