Bug: Fix broken ui components when angular is disabled (#78208)

fix(frontend): move bootstrap import to app so disabling angular doesnt break ui
This commit is contained in:
Jack Westbrook 2023-11-27 10:43:55 +01:00 committed by GitHub
parent 1ab23108c4
commit 1112e9006b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,6 @@ import 'angular';
import 'angular-route';
import 'angular-sanitize';
import 'angular-bindonce';
import 'vendor/bootstrap/bootstrap';
import angular from 'angular'; // eslint-disable-line no-duplicate-imports
import { extend } from 'lodash';

View File

@ -5,6 +5,7 @@ import 'regenerator-runtime/runtime';
import 'whatwg-fetch'; // fetch polyfill needed for PhantomJs rendering
import 'file-saver';
import 'jquery';
import 'vendor/bootstrap/bootstrap';
import 'app/features/all';