Skip to content

Commit

Permalink
Merge pull request #50 from hiroto7/CollectivelyCourseSetView
Browse files Browse the repository at this point in the history
[CSVから履修状態を一括登録] において、科目群への割り当てをするときの画面遷移を滑らかに改善
  • Loading branch information
hiroto7 authored Sep 7, 2020
2 parents 94de261 + 1fa2326 commit acf3127
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "credits",
"version": "2.7.5",
"version": "2.7.9",
"private": true,
"dependencies": {
"@babel/core": "7.11.6",
Expand Down
4 changes: 2 additions & 2 deletions src/CollectivelyCourseSetView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -438,14 +438,14 @@ const CollectivelyCourseSetView: React.FC<{
}
onCancel={
() => {
onSubmit({ ...plan, courseToStatus })
setPage(undefined);
onSubmit({ ...plan, courseToStatus });
}
}
onSubmit={
plan => {
onSubmit(plan);
setPage(undefined);
onSubmit(plan);
}
}
/>
Expand Down

0 comments on commit acf3127

Please sign in to comment.