nothumanallowed 3.0.1 → 3.0.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nothumanallowed",
3
- "version": "3.0.1",
3
+ "version": "3.0.2",
4
4
  "description": "NotHumanAllowed — 38 AI agents for security, code, DevOps, data & daily ops. Ask agents directly, plan your day with 5 specialist agents, manage tasks, connect Gmail + Calendar.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -623,7 +623,7 @@ async function refreshPlan() {
623
623
  function renderTasks(el) {
624
624
  const tasks = dashData.tasks;
625
625
  let html = '<div class="task-add-bar">' +
626
- '<input id="task-desc-input" placeholder="Add a new task..." onkeydown="if(event.key===\'Enter\')addTaskUI()">' +
626
+ '<input id="task-desc-input" placeholder="Add a new task..." onkeydown="if(event.key===\\\'Enter\\\')addTaskUI()">' +
627
627
  '<select id="task-priority-select"><option value="medium">Medium</option><option value="high">High</option><option value="critical">Critical</option><option value="low">Low</option></select>' +
628
628
  '<button onclick="addTaskUI()">Add</button>' +
629
629
  '</div>';