Skip to content

Commit

Permalink
(BIDS-2499) fixed url query conversion (#2566)
Browse files Browse the repository at this point in the history
  • Loading branch information
remoterami authored Sep 21, 2023
1 parent 1f0773f commit ff3b8b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static/js/datatable_loader.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function dataTableLoader(path) {
}

const doFetch = (tableData, callback) => {
fetch(`${path}?${new URLSearchParams(tableData)}`)
fetch(`${path}?${$.param(tableData)}`)
.then((response) => {
if (!response.ok) {
throw new Error(`Failed with status: ${response.status}`)
Expand Down

0 comments on commit ff3b8b3

Please sign in to comment.