viberadar 0.3.135 → 0.3.136
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/dist/ui/dashboard.html +2 -2
- package/package.json +1 -1
package/dist/ui/dashboard.html
CHANGED
|
@@ -4484,8 +4484,8 @@ function renderDocFeatureCards(c) {
|
|
|
4484
4484
|
});
|
|
4485
4485
|
});
|
|
4486
4486
|
|
|
4487
|
-
// Agent button clicks
|
|
4488
|
-
c.querySelectorAll('.doc-agent-btn').forEach(btn => {
|
|
4487
|
+
// Agent button clicks — only buttons with data-task (not export <a> links)
|
|
4488
|
+
c.querySelectorAll('.doc-agent-btn[data-task]').forEach(btn => {
|
|
4489
4489
|
btn.addEventListener('click', (e) => {
|
|
4490
4490
|
e.stopPropagation();
|
|
4491
4491
|
runAgentTask(btn.dataset.task, btn.dataset.key);
|