@yemi33/minions 0.1.348 → 0.1.349
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -1
- package/dashboard/js/modal.js +3 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dashboard/js/modal.js
CHANGED
|
@@ -6,9 +6,11 @@ function closeModal() {
|
|
|
6
6
|
document.getElementById('modal').classList.remove('open');
|
|
7
7
|
// Hide Q&A section (only shown for document modals)
|
|
8
8
|
document.getElementById('modal-qa').style.display = 'none';
|
|
9
|
-
// Remove settings
|
|
9
|
+
// Remove settings buttons if present
|
|
10
10
|
const settingsBtn = document.getElementById('modal-settings-save');
|
|
11
11
|
if (settingsBtn) settingsBtn.remove();
|
|
12
|
+
const resetBtn = document.getElementById('modal-settings-reset');
|
|
13
|
+
if (resetBtn) resetBtn.remove();
|
|
12
14
|
// Save Q&A session for this document (persist across modal open/close)
|
|
13
15
|
if (_qaSessionKey && (_qaHistory.length > 0 || _qaQueue.length > 0)) {
|
|
14
16
|
_qaSessions.set(_qaSessionKey, {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.349",
|
|
4
4
|
"description": "Multi-agent AI dev team that runs from ~/.minions/ — five autonomous agents share a single engine, dashboard, and knowledge base",
|
|
5
5
|
"bin": {
|
|
6
6
|
"minions": "bin/minions.js"
|