You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
select count(*)
from products
where published_at > '$$start:2024-01-01$$'
Everything works fine for the user with change permission.
When a user with "view" permission tries to open it, there are following issues:
clicking on the refresh link doesn't have any effect. Even if the user changes the value of the parameter, the output isn't updated.
the sql box remains open (in previous versions it was collapsed)
If may help, looking in the browser console I can see the following js error:
TypeError: Cannot read properties of null (reading 'addEventListener')
at rC.bind (explorer.5.0.2.js:69:7611)
document.getElementById("show_schema_button").addEventListener("click", this.showSchema.bind(this)),
The text was updated successfully, but these errors were encountered:
Hi,
when I create a parameterized query like:
select count(*)
from products
where published_at > '$$start:2024-01-01$$'
Everything works fine for the user with change permission.
When a user with "view" permission tries to open it, there are following issues:
If may help, looking in the browser console I can see the following js error:
TypeError: Cannot read properties of null (reading 'addEventListener')
at rC.bind (explorer.5.0.2.js:69:7611)
document.getElementById("show_schema_button").addEventListener("click", this.showSchema.bind(this)),
The text was updated successfully, but these errors were encountered: