mirror of https://github.com/grafana/grafana.git
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:
parent
1ab23108c4
commit
1112e9006b
|
|
@ -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';
|
||||
|
|
|
|||
|
|
@ -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';
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue