This is an automated email from the ASF dual-hosted git repository.
ppawar pushed a commit to branch atlas-2.5
in repository https://gitbox.apache.org/repos/asf/atlas.git
The following commit(s) were added to refs/heads/atlas-2.5 by this push:
new ce32b8c87 ATLAS-5259: ATLAS UI: Classic UI fails to load when
switching from React UI due to missing Bootstrap assets (#576) ( cherry picked
from 17ed0adb3867c181451769cc117e7ed68aa674dc)
ce32b8c87 is described below
commit ce32b8c87b5a2d82abf629b010d164479eea6557
Author: Prasad Pawar <[email protected]>
AuthorDate: Wed Mar 25 10:49:33 2026 +0530
ATLAS-5259: ATLAS UI: Classic UI fails to load when switching from React UI
due to missing Bootstrap assets (#576)
( cherry picked from 17ed0adb3867c181451769cc117e7ed68aa674dc)
---
dashboardv2/gruntfile.js | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dashboardv2/gruntfile.js b/dashboardv2/gruntfile.js
index 85fa372b4..f57460490 100644
--- a/dashboardv2/gruntfile.js
+++ b/dashboardv2/gruntfile.js
@@ -225,11 +225,11 @@ module.exports = function(grunt) {
bootstrap: {
files: [
{
- src: nodeModulePath +
'bootstrap/dist/js/bootstrap.min.js',
+ src: nodeModulePath +
'bootstrap/dist/js/bootstrap-patched.min.js',
dest: libPath + 'bootstrap/js/bootstrap.min.js'
},
{
- src: nodeModulePath +
'bootstrap/dist/css/bootstrap.min.css',
+ src: nodeModulePath +
'bootstrap/dist/css/bootstrap-patched.min.css',
dest: libPath + 'bootstrap/css/bootstrap.min.css'
}
]