Skip to content

Commit 71eff52

Browse files
authored
Merge pull request #487 from microsoft/bugfix485
Bugfix485
2 parents 711e0de + 6a3c322 commit 71eff52

File tree

7 files changed

+1342
-4
lines changed

7 files changed

+1342
-4
lines changed

application/single_app/config.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,8 @@
8888
EXECUTOR_TYPE = 'thread'
8989
EXECUTOR_MAX_WORKERS = 30
9090
SESSION_TYPE = 'filesystem'
91-
# Allow overriding the session file directory; default to /app/flask_session with proper permissions
92-
SESSION_FILE_DIR = os.getenv('SESSION_FILE_DIR', '/app/flask_session')
93-
VERSION = "0.230.001"
91+
VERSION = "0.229.063"
92+
9493

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

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();

docs/explanation/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

0 commit comments

Comments
 (0)