Skip to content

Commit

Permalink
add hash to frame url
Browse files Browse the repository at this point in the history
  • Loading branch information
B-i-t-K committed Oct 27, 2024
1 parent fd4ec6f commit a16349d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/pages/dom-explorer/embed/[[id]].vue
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ const router = useRouter();
const url = computed(() => {
const url = router.resolve({
name: "dom-explorer-frame",
hash: b64EncodeUnicode(JSON.stringify(state.value)),
hash: '#' + b64EncodeUnicode(JSON.stringify(state.value)),
query: {
input: settings.input,
titleBar: settings.titleBar,
Expand Down

0 comments on commit a16349d

Please sign in to comment.