ssb: Fix bad escape on the query tab.

This commit is contained in:
2025-09-22 07:48:11 -04:00
parent 675cecaa20
commit ac7809415c
2 changed files with 2 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
{
"type": "tildefriends-app",
"emoji": "🦀",
"previous": "&C4r2tB/tzPjPSrS3NRiebaNOP94G4FX80yIg7YN9sBQ=.sha256"
"previous": "&YjhLb+AYKqh7vq6OpAJH1BgypJdAbDcqxSduflyMoCo=.sha256"
}

View File

@@ -732,7 +732,7 @@ class TfElement extends LitElement {
whoami=${this.whoami}
.users=${this.users}
query=${this.hash?.startsWith('#sql=')
? decodeURIComponent(this.hash.substring(5))
? this.hash.substring(5)
: null}
></tf-tab-query>
`;