Skip to content

Commit

Permalink
Merge pull request #87 from boostcamp-2020/develop
Browse files Browse the repository at this point in the history
FIX  isopen 관련 수정
  • Loading branch information
mistercle authored Nov 13, 2020
2 parents 2dfe551 + 08a381e commit 15e9128
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/lib/query.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const getValue = (str, key) => {
const pushQuery = (str, key, value) => {
const queryObject = parse(str);
for (const i in queryObject) {
if(i === key) return
if(i === key) return construct(queryObject)
}
queryObject[key] = value
return construct(queryObject);
Expand Down

0 comments on commit 15e9128

Please sign in to comment.