@synergenius/flow-weaver-pack-weaver 0.9.78 → 0.9.79
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/ui/bot-panel.js +3 -3
- package/package.json +1 -1
- package/src/ui/bot-panel.tsx +3 -3
package/dist/ui/bot-panel.js
CHANGED
|
@@ -100,7 +100,7 @@ function BotPanel() {
|
|
|
100
100
|
const handleOpenDashboard = useCallback(() => {
|
|
101
101
|
ctx.openWindow({
|
|
102
102
|
type: "custom",
|
|
103
|
-
title: "
|
|
103
|
+
title: "Weaver",
|
|
104
104
|
icon: "dashboard",
|
|
105
105
|
contentType: "bot-workspace",
|
|
106
106
|
displayState: "docked",
|
|
@@ -121,7 +121,7 @@ function BotPanel() {
|
|
|
121
121
|
Flex,
|
|
122
122
|
{ variant: "row-center-start-nowrap-6" },
|
|
123
123
|
React.createElement(Icon, { name: "smartToy", size: 16, color: "color-text-medium" }),
|
|
124
|
-
React.createElement(Typography, { variant: "caption-thick", color: "color-text-high" }, "
|
|
124
|
+
React.createElement(Typography, { variant: "caption-thick", color: "color-text-high" }, "Weaver")
|
|
125
125
|
),
|
|
126
126
|
React.createElement(IconButton, {
|
|
127
127
|
icon: "reset",
|
|
@@ -331,7 +331,7 @@ function BotPanel() {
|
|
|
331
331
|
},
|
|
332
332
|
React.createElement(EmptyState, {
|
|
333
333
|
icon: "smartToy",
|
|
334
|
-
message: swarmStatus === "idle" ? "
|
|
334
|
+
message: swarmStatus === "idle" ? "Idle" : "No instances active",
|
|
335
335
|
description: "Open the dashboard to configure and start the swarm."
|
|
336
336
|
})
|
|
337
337
|
);
|
package/package.json
CHANGED
package/src/ui/bot-panel.tsx
CHANGED
|
@@ -140,7 +140,7 @@ function BotPanel() {
|
|
|
140
140
|
const handleOpenDashboard = useCallback(() => {
|
|
141
141
|
ctx.openWindow({
|
|
142
142
|
type: 'custom',
|
|
143
|
-
title: '
|
|
143
|
+
title: 'Weaver',
|
|
144
144
|
icon: 'dashboard',
|
|
145
145
|
contentType: 'bot-workspace',
|
|
146
146
|
displayState: 'docked',
|
|
@@ -161,7 +161,7 @@ function BotPanel() {
|
|
|
161
161
|
},
|
|
162
162
|
React.createElement(Flex, { variant: 'row-center-start-nowrap-6' },
|
|
163
163
|
React.createElement(Icon, { name: 'smartToy', size: 16, color: 'color-text-medium' }),
|
|
164
|
-
React.createElement(Typography, { variant: 'caption-thick', color: 'color-text-high' }, '
|
|
164
|
+
React.createElement(Typography, { variant: 'caption-thick', color: 'color-text-high' }, 'Weaver'),
|
|
165
165
|
),
|
|
166
166
|
React.createElement(IconButton, {
|
|
167
167
|
icon: 'reset', size: 'xs', variant: 'clear',
|
|
@@ -329,7 +329,7 @@ function BotPanel() {
|
|
|
329
329
|
},
|
|
330
330
|
React.createElement(EmptyState, {
|
|
331
331
|
icon: 'smartToy',
|
|
332
|
-
message: swarmStatus === 'idle' ? '
|
|
332
|
+
message: swarmStatus === 'idle' ? 'Idle' : 'No instances active',
|
|
333
333
|
description: 'Open the dashboard to configure and start the swarm.',
|
|
334
334
|
}),
|
|
335
335
|
);
|