@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.
- package/cli/web-ui.js +2 -1
- 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')
|
|
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() });
|