Skip to content

Commit

Permalink
Merge pull request #208 from boostcampwm2023/feat/196-list-view-filte…
Browse files Browse the repository at this point in the history
…ring

[Feat] 리스트 보기 필터링 기능 도입
  • Loading branch information
dbwhdtjr0457 authored Dec 5, 2023
2 parents a69feff + 5a53f6d commit f557dca
Show file tree
Hide file tree
Showing 5 changed files with 512 additions and 12 deletions.
88 changes: 88 additions & 0 deletions FE/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions FE/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"date-fns": "^2.30.0",
"react": "^18.2.0",
"react-datepicker": "^4.24.0",
"react-dom": "^18.2.0",
"react-query": "^3.39.3",
"react-scripts": "5.0.1",
Expand Down
4 changes: 4 additions & 0 deletions FE/src/assets/search.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 1 addition & 3 deletions FE/src/components/DiaryModal/DiaryCreateModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,12 +131,10 @@ function DiaryCreateModal(props) {
fontSize='1rem'
placeholder='태그를 입력해주세요.'
onBlur={(e) => addTag(e)}
onKeyPress={(e) => {
onKeyDown={(e) => {
if (e.key === "Enter") {
addTag(e);
}
}}
onKeyDown={(e) => {
if (e.key === "Backspace" && e.target.value.length === 0) {
deleteLastTag();
}
Expand Down
Loading

0 comments on commit f557dca

Please sign in to comment.