File tree 4 files changed +9
-5
lines changed
4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ We have created a new website for the survey of lab assignment preferences.
15
15
- Deployed when the pull request for ** develop** branch is closed
16
16
17
17
- ** Production env**
18
+ - < https://assign.nislab.io/ >
18
19
- < https://lab-assignment-prod.web.app/ >
19
20
- Deployed when the pull request for ** main** branch is closed
20
21
Original file line number Diff line number Diff line change @@ -305,6 +305,10 @@ export default {
305
305
student .point ,
306
306
this .teachers .map ((obj ) => obj .id )
307
307
)
308
+ if (typeof student .id === ' number' ) {
309
+ const studentId = student .id .toString ()
310
+ student .id = studentId
311
+ }
308
312
if (student .rank == null ) {
309
313
student .rank = 0
310
314
}
@@ -341,10 +345,10 @@ export default {
341
345
if (! this .validate ) {
342
346
const createUser = httpsCallable (functions, ' createUserToAuthAndDB' )
343
347
const student = {
344
- id: this .manualForm .id ,
348
+ id: this .manualForm .id . toString () ,
345
349
name: this .manualForm .name ,
346
- rank: this .manualForm .rank ,
347
- group: this .manualForm .group ,
350
+ rank: Number ( this .manualForm .rank ) ,
351
+ group: Number ( this .manualForm .group ) ,
348
352
email: this .manualForm .email ,
349
353
status: ' test' ,
350
354
isActive: true ,
Original file line number Diff line number Diff line change 2
2
<v-card >
3
3
<v-card-title >Excelファイルを出力</v-card-title >
4
4
<v-container >
5
- <v-subheader >出力する学生の年度 </v-subheader >
5
+ <v-subheader >出力する学生の年度を選択してください </v-subheader >
6
6
<v-form class =" form__wrap" >
7
7
<v-select v-model =" year" label =" 年度" :items =" years" color =" accent" />
8
8
</v-form >
Original file line number Diff line number Diff line change @@ -101,7 +101,6 @@ export default {
101
101
{
102
102
text: ' メールアドレス' ,
103
103
sortable: false ,
104
- filterable: false ,
105
104
value: ' email' ,
106
105
},
107
106
{
You can’t perform that action at this time.
0 commit comments