Skip to content

Commit

Permalink
Merge pull request #675 from twin-te/fix/search-word-split
Browse files Browse the repository at this point in the history
空白区切りで検索ができないバグを修正
  • Loading branch information
HosokawaR authored Apr 7, 2023
2 parents 391f56a + 26ce86b commit bf1da62
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ui/pages/add/search.vue
Original file line number Diff line number Diff line change
Expand Up @@ -366,8 +366,8 @@ const search = async (init = true) => {
const result = await Usecase.searchCourse(ports)(
year.value,
keyword.value.split("/\s/"),
code.value.split("/\s/"),
keyword.value.split(/\s/),
code.value.split(/\s/),
timetable,
onlyBlank.value,
"Cover",
Expand Down

1 comment on commit bf1da62

@vercel
Copy link

@vercel vercel bot commented on bf1da62 Apr 7, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

twinte-front-staging – ./

twinte-front-staging-git-main-twin-te.vercel.app
twinte-front-staging-twin-te.vercel.app
app.dev.twinte.net

Please sign in to comment.