Fix jumpDialogCrumb

This commit is contained in:
Natsumi
2026-02-03 13:54:59 +13:00
parent 5a27e6fb51
commit 50a037686b
7 changed files with 25 additions and 63 deletions
+2 -3
View File
@@ -78,7 +78,7 @@ export const useWorldStore = defineStore('World', () => {
* @param {string} tag
* @param {string} shortName
*/
function showWorldDialog(tag, shortName = null, options = {}) {
function showWorldDialog(tag, shortName = null) {
const D = worldDialog;
const L = parseLocation(tag);
if (L.worldId === '') {
@@ -86,8 +86,7 @@ export const useWorldStore = defineStore('World', () => {
}
uiStore.openDialog({
type: 'world',
id: L.worldId,
skipBreadcrumb: options.skipBreadcrumb
id: L.worldId
});
D.visible = true;
if (D.id === L.worldId) {