Skip to content

Commit

Permalink
Fix Visual Explain confirm message (#1709)
Browse files Browse the repository at this point in the history
  • Loading branch information
barryvdh authored Dec 16, 2024
1 parent b7bce85 commit ae853be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Resources/queries/widget.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
const $explainButton = $('<a>Visual Explain</a>')
.addClass(csscls('visual-explain'))
.on('click', () => {
if (!confirm(statement.explain['visual-confirm'])) return;
if (!confirm(confirmMessage)) return;
fetch(statement.explain.url, {
method: "POST",
body: JSON.stringify({
Expand Down

0 comments on commit ae853be

Please # to comment.