Commit d1bb47fa authored by minseok.park's avatar minseok.park

fix lint

parent d2856e7a
...@@ -117,12 +117,12 @@ ...@@ -117,12 +117,12 @@
expandButton.innerHTML = collapseIconPath expandButton.innerHTML = collapseIconPath
expandButton.setAttribute('fill', '#fff') expandButton.setAttribute('fill', '#fff')
expandButton.setAttribute('viewBox', '0 0 20 20') expandButton.setAttribute('viewBox', '0 0 20 20')
chat?.classList.add('expand') chat.classList.add('expand')
} else { } else {
expandButton.innerHTML = expandIconPath expandButton.innerHTML = expandIconPath
expandButton.setAttribute('fill', '#fff') expandButton.setAttribute('fill', '#fff')
expandButton.setAttribute('viewBox', '0 0 20 20') expandButton.setAttribute('viewBox', '0 0 20 20')
chat?.classList.remove('expand') chat.classList.remove('expand')
} }
}) })
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment