Skip to content

Commit cea0229

Browse files
ck-c8yreubenmiller
authored andcommitted
fixing wrong references
1 parent 4088bdb commit cea0229

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ui/main.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import '../../cumulocity-dynamic-mapper/dynamic-mapping-ui/src/i18n';
1+
import './i18n';
22
import { applyOptions, loadOptions } from '@c8y/bootstrap';
33

44
const barHolder: HTMLElement = document.querySelector('body > .init-load');
@@ -13,7 +13,7 @@ async function applicationSetup() {
1313
});
1414

1515
const mod = await import(
16-
'../../cumulocity-dynamic-mapper/dynamic-mapping-ui/src/bootstrap'
16+
'./bootstrap'
1717
);
1818
const bootstrapApp =
1919
mod.bootstrap || (window as any).bootstrap || (() => null);

ui/polyfills.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@
3030
/***************************************************************************************************
3131
* Zone JS is required by default for Angular itself.
3232
*/
33-
import 'zone.js/dist/zone'; // Included with Angular CLI.
33+
import 'zone.js'; // Included with Angular CLI.

0 commit comments

Comments
 (0)