clementine-agent 1.18.68 → 1.18.69
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/cli/dashboard.js +1 -1
- package/package.json +1 -1
package/dist/cli/dashboard.js
CHANGED
|
@@ -24042,7 +24042,7 @@ function parseAllowedToolsRaw() {
|
|
|
24042
24042
|
var ta = document.getElementById('cron-allowed-tools');
|
|
24043
24043
|
if (!ta) return [];
|
|
24044
24044
|
var raw = ta.value || '';
|
|
24045
|
-
var tokens = raw.split(/[
|
|
24045
|
+
var tokens = raw.split(/[,\\n\\s]+/).map(function(s) { return s.trim(); }).filter(Boolean);
|
|
24046
24046
|
return tokens.filter(function(t) { return /^[A-Za-z0-9_:-]+$/.test(t); });
|
|
24047
24047
|
}
|
|
24048
24048
|
|