MCPcopy
hub / github.com/nesquena/hermes-webui / set

Function set

static/panels.js:2955–2958  ·  view source on GitHub ↗
(id, val)

Source from the content-addressed store, hash-verified

2953function _kanbanResetTaskModalFields(values){
2954 const v = values || {};
2955 const set = (id, val) => {
2956 const el = document.getElementById(id);
2957 if (el) el.value = (val == null ? '' : String(val));
2958 };
2959 set('kanbanTaskModalTitleInput', v.title || '');
2960 set('kanbanTaskModalBody', v.body || '');
2961 set('kanbanTaskModalStatus', v.status || 'triage');

Calls

no outgoing calls