Skip to content

Commit 68ca4fb

Browse files
committed
Fix chatbot name
1 parent 570117d commit 68ca4fb

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

src/bioEngine.js

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -181,19 +181,7 @@ export async function setupBioEngine() {
181181
}
182182
});
183183
app.addMenuItem({
184-
label: "🎢 Playground",
185-
callback() {
186-
api.createWindow({ src: "https://if.imjoy.io" });
187-
}
188-
});
189-
app.addMenuItem({
190-
label: "📓 Notebooks",
191-
callback() {
192-
api.createWindow({ src: "https://jupyter.imjoy.io" });
193-
}
194-
});
195-
app.addMenuItem({
196-
label: "🤖 BioImage.IO Chatbot",
184+
label: "🤖 Chatbot",
197185
async callback() {
198186
await api.showMessage("Loading BioImage.IO Chatbot...");
199187
await api.createWindow({
@@ -209,6 +197,18 @@ export async function setupBioEngine() {
209197
);
210198
}
211199
});
200+
app.addMenuItem({
201+
label: "🎢 Playground",
202+
callback() {
203+
api.createWindow({ src: "https://if.imjoy.io" });
204+
}
205+
});
206+
app.addMenuItem({
207+
label: "📓 Notebooks",
208+
callback() {
209+
api.createWindow({ src: "https://jupyter.imjoy.io" });
210+
}
211+
});
212212
// expose global variables
213213
window.api = api;
214214
window.imjoy = app.imjoy;

0 commit comments

Comments
 (0)