@cccarv82/freya 2.1.1 → 2.1.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.
Files changed (2) hide show
  1. package/cli/web-ui.js +2 -1
  2. package/package.json +1 -1
package/cli/web-ui.js CHANGED
@@ -881,7 +881,8 @@
881
881
  async function doInit() {
882
882
  try {
883
883
  saveLocal();
884
- $('sidePath').textContent = dirOrDefault();
884
+ const sp = $('sidePath');
885
+ if (sp) sp.textContent = dirOrDefault();
885
886
  setPill('run', 'init…');
886
887
  setOut('');
887
888
  const r = await api('/api/init', { dir: dirOrDefault() });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cccarv82/freya",
3
- "version": "2.1.1",
3
+ "version": "2.1.2",
4
4
  "description": "Personal AI Assistant with local-first persistence",
5
5
  "scripts": {
6
6
  "health": "node scripts/validate-data.js",