Skip to content

Commit 33383f9

Browse files
fix for bug 485 (#486)
Co-authored-by: Bionic711 <nadoyle@microsoft.com>
1 parent f549de9 commit 33383f9

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

RELEASE_NOTES.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
<!-- BEGIN RELEASE_NOTES.MD BLOCK -->
22
# Feature Release
33

4+
### **(v0.229.063)**
5+
6+
#### Bug Fixes
7+
8+
* **Admin Plugins Modal Load Fix**
9+
* Fixed issue where Admin Plugins modal would fail to load when using sidenav navigation.
10+
* **Root Cause**: JavaScript code attempted to access DOM elements that didn't exist in sidenav navigation.
11+
* **Solution**: Corrected DOM element checks to ensure compatibility with both top-nav and sidenav layouts.
12+
* **User Experience**: Admins can now access the Plugins modal reglardless of navigation style.
13+
* (Ref: `admin_plugins.js`, DOM existence checks)
14+
415
### **(v0.229.062)**
516

617
#### Bug Fixes

application/single_app/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
EXECUTOR_TYPE = 'thread'
8989
EXECUTOR_MAX_WORKERS = 30
9090
SESSION_TYPE = 'filesystem'
91-
VERSION = "0.229.062"
91+
VERSION = "0.229.063"
9292

9393

9494
SECRET_KEY = os.getenv('SECRET_KEY', 'dev-secret-key-change-in-production')

application/single_app/static/js/admin/admin_plugins.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { renderPluginsTable as sharedRenderPluginsTable, validatePluginManifest
44

55
// Main logic
66
document.addEventListener('DOMContentLoaded', function () {
7-
if (!document.getElementById('agents-tab')) return;
7+
if (!document.getElementById('actions-configuration')) return;
88

99
// Load and render plugins table
1010
loadPlugins();

0 commit comments

Comments
 (0)