From 08a381ec86c910991b6da90effdd6ff6e687430b Mon Sep 17 00:00:00 2001 From: mistercle <48170519+mistercle@users.noreply.github.com> Date: Fri, 13 Nov 2020 12:14:59 +0900 Subject: [PATCH] =?UTF-8?q?fix=20:=20isopen=20=EA=B4=80=EB=A0=A8=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit isopen이 쿼리에 있을경우 관련하여 수정 --- frontend/src/lib/query.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/lib/query.js b/frontend/src/lib/query.js index 485b7d2..174f0bd 100644 --- a/frontend/src/lib/query.js +++ b/frontend/src/lib/query.js @@ -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);