tui: add consent dialog when sharing for the first time (#20525)
parent
789d86f7b0
commit
df1c6c9e8d
|
|
@ -360,6 +360,11 @@ export function Session() {
|
||||||
dialog.clear()
|
dialog.clear()
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
if (!kv.get("share_consent", false)) {
|
||||||
|
const ok = await DialogConfirm.show(dialog, "Share Session", "Are you sure you want to share it?")
|
||||||
|
if (ok !== true) return
|
||||||
|
kv.set("share_consent", true)
|
||||||
|
}
|
||||||
await sdk.client.session
|
await sdk.client.session
|
||||||
.share({
|
.share({
|
||||||
sessionID: route.sessionID,
|
sessionID: route.sessionID,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue