mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 17:08:34 +00:00
This commit is contained in:
parent
2d5af45309
commit
d8009fa028
1 changed files with 1 additions and 1 deletions
|
|
@ -165,7 +165,7 @@ export const serializeNestedObjectToQueryParams = function (obj, prefix) {
|
|||
var str = [],
|
||||
p;
|
||||
for (p in obj) {
|
||||
if (obj.hasOwnProperty(p)) {
|
||||
if (Object.prototype.hasOwnProperty.call(obj, p)) {
|
||||
var k = prefix ? prefix + '[' + p + ']' : p,
|
||||
v = obj[p];
|
||||
str.push(
|
||||
|
|
|
|||
Loading…
Reference in a new issue