loopsy 1.0.6 → 1.0.8
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/dashboard/public/app.js +6 -6
- package/dist/dashboard/public/views/ai-tasks.js +1 -1
- package/dist/dashboard/public/views/context.js +1 -1
- package/dist/dashboard/public/views/messages.js +1 -1
- package/dist/dashboard/public/views/overview.js +1 -1
- package/dist/dashboard/public/views/peers.js +1 -1
- package/dist/dashboard/public/views/terminal.js +1 -1
- package/package.json +1 -1
- package/scripts/postinstall.mjs +1 -1
|
@@ -95,12 +95,12 @@ function updateClock() {
|
|
|
95
95
|
async function init() {
|
|
96
96
|
// Load view modules
|
|
97
97
|
await Promise.all([
|
|
98
|
-
import('
|
|
99
|
-
import('
|
|
100
|
-
import('
|
|
101
|
-
import('
|
|
102
|
-
import('
|
|
103
|
-
import('
|
|
98
|
+
import('./views/overview.js'),
|
|
99
|
+
import('./views/terminal.js'),
|
|
100
|
+
import('./views/context.js'),
|
|
101
|
+
import('./views/messages.js'),
|
|
102
|
+
import('./views/peers.js'),
|
|
103
|
+
import('./views/ai-tasks.js'),
|
|
104
104
|
]);
|
|
105
105
|
|
|
106
106
|
// Nav click handlers
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { registerView, dashboardApi, formatUptime, escapeHtml } from '
|
|
1
|
+
import { registerView, dashboardApi, formatUptime, escapeHtml } from '../app.js';
|
|
2
2
|
|
|
3
3
|
function platformSvg(platform) {
|
|
4
4
|
const s = (d) => `<svg width="18" height="18" viewBox="0 0 18 18" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" style="color:var(--text-secondary)">${d}</svg>`;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { registerView, api, dashboardApi, escapeHtml, formatTime } from '
|
|
1
|
+
import { registerView, api, dashboardApi, escapeHtml, formatTime } from '../app.js';
|
|
2
2
|
|
|
3
3
|
function platformSvg(platform) {
|
|
4
4
|
const s = (d) => `<svg width="18" height="18" viewBox="0 0 18 18" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" style="color:var(--text-secondary)">${d}</svg>`;
|
package/package.json
CHANGED
package/scripts/postinstall.mjs
CHANGED