This is an automated email from the ASF dual-hosted git repository. ppawar pushed a commit to branch ATLAS-5259 in repository https://gitbox.apache.org/repos/asf/atlas.git
commit e0e07b1bcb163415db529de281beb0c2fbbc435b Author: Prasad Pawar <[email protected]> AuthorDate: Tue Mar 24 10:01:25 2026 +0530 ATLAS-5259: ATLAS UI: Classic UI fails to load when switching from React UI due to missing Bootstrap assets --- 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' } ]
