feat(mobile): show page back by url search (#9100)

close AF-1911
This commit is contained in:
CatsJuice
2024-12-12 07:14:05 +00:00
parent 84df2a1d16
commit 5dd2dddd74
8 changed files with 75 additions and 15 deletions
@@ -124,7 +124,12 @@ export class Workbench extends Entity {
}
openDoc(
id: string | ({ docId: string } & ReferenceParams),
id:
| string
| ({ docId: string } & (
| ReferenceParams
| Record<string, string | undefined>
)),
options?: WorkbenchOpenOptions
) {
const isString = typeof id === 'string';