Skip to content

Commit

Permalink
fix: incorrectly turned path and dark into one object
Browse files Browse the repository at this point in the history
  • Loading branch information
iisakkirotko committed Feb 8, 2024
1 parent 3fb6df8 commit f58e32e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion solara/server/static/main-vuetify.js
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ async function solaraInit(mountId, appName) {
if (kernelId && widgetModelId) {
await widgetManager.fetchAll();
} else {
widgetModelId = await widgetManager.run(appName, {path, darkMode: inDarkMode()});
widgetModelId = await widgetManager.run(appName, path, inDarkMode());
}
await solaraMount(widgetManager, mountId || 'content', widgetModelId);
skipReconnectedCheck = false;
Expand Down

0 comments on commit f58e32e

Please sign in to comment.