Skip to content
5 changes: 2 additions & 3 deletions application/single_app/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,8 @@
EXECUTOR_TYPE = 'thread'
EXECUTOR_MAX_WORKERS = 30
SESSION_TYPE = 'filesystem'
# Allow overriding the session file directory; default to /app/flask_session with proper permissions
SESSION_FILE_DIR = os.getenv('SESSION_FILE_DIR', '/app/flask_session')
VERSION = "0.230.001"
VERSION = "0.229.063"


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

Expand Down
2 changes: 1 addition & 1 deletion application/single_app/static/js/admin/admin_plugins.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { renderPluginsTable as sharedRenderPluginsTable, validatePluginManifest

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

// Load and render plugins table
loadPlugins();
Expand Down
11 changes: 11 additions & 0 deletions docs/explanation/release_notes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
<!-- BEGIN release_notes.md BLOCK -->
# Feature Release

### **(v0.229.063)**

#### Bug Fixes

* **Admin Plugins Modal Load Fix**
* Fixed issue where Admin Plugins modal would fail to load when using sidenav navigation.
* **Root Cause**: JavaScript code attempted to access DOM elements that didn't exist in sidenav navigation.
* **Solution**: Corrected DOM element checks to ensure compatibility with both top-nav and sidenav layouts.
* **User Experience**: Admins can now access the Plugins modal reglardless of navigation style.
* (Ref: `admin_plugins.js`, DOM existence checks)

### **(v0.229.062)**

#### Bug Fixes
Expand Down
Loading