Skip to content

Commit 4b7e9b9

Browse files
authored
Merge pull request #148 from RyoichiNakai/develop
本番反映 リリースv1.0.1
2 parents 918ba1a + 9d77e0f commit 4b7e9b9

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ We have created a new website for the survey of lab assignment preferences.
1515
- Deployed when the pull request for **develop** branch is closed
1616

1717
- **Production env**
18+
- <https://assign.nislab.io/>
1819
- <https://lab-assignment-prod.web.app/>
1920
- Deployed when the pull request for **main** branch is closed
2021

components/admin/dialogs/AccountPlus.vue

+7-3
Original file line numberDiff line numberDiff line change
@@ -305,6 +305,10 @@ export default {
305305
student.point,
306306
this.teachers.map((obj) => obj.id)
307307
)
308+
if (typeof student.id === 'number') {
309+
const studentId = student.id.toString()
310+
student.id = studentId
311+
}
308312
if (student.rank == null) {
309313
student.rank = 0
310314
}
@@ -341,10 +345,10 @@ export default {
341345
if (!this.validate) {
342346
const createUser = httpsCallable(functions, 'createUserToAuthAndDB')
343347
const student = {
344-
id: this.manualForm.id,
348+
id: this.manualForm.id.toString(),
345349
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),
348352
email: this.manualForm.email,
349353
status: 'test',
350354
isActive: true,

components/admin/dialogs/FileExcel.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<v-card>
33
<v-card-title>Excelファイルを出力</v-card-title>
44
<v-container>
5-
<v-subheader>出力する学生の年度</v-subheader>
5+
<v-subheader>出力する学生の年度を選択してください</v-subheader>
66
<v-form class="form__wrap">
77
<v-select v-model="year" label="年度" :items="years" color="accent" />
88
</v-form>

pages/admin/users.vue

-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ export default {
101101
{
102102
text: 'メールアドレス',
103103
sortable: false,
104-
filterable: false,
105104
value: 'email',
106105
},
107106
{

0 commit comments

Comments
 (0)