Skip to content

Commit 732954a

Browse files
committed
fix: Vuetifyアップデートに伴うバグの修正
1 parent 0d09e2a commit 732954a

File tree

7 files changed

+3
-16
lines changed

7 files changed

+3
-16
lines changed

src/components/EditLessonScreenInner1.vue

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,6 @@
121121
<editor-input-field-pickable
122122
v-model="tempFormData.startTime"
123123
:title="`${$t('components.editing_screen.labels.time')} *`"
124-
label="start_time"
125124
placeholder="00:00"
126125
:transparent="true"
127126
icon-name="mdi-clock-outline"
@@ -132,7 +131,6 @@
132131
<span class="Hyphen">-</span>
133132
<editor-input-field-pickable
134133
v-model="tempFormData.endTime"
135-
label="end_time"
136134
placeholder="00:00"
137135
:transparent="true"
138136
icon-name="mdi-clock-outline"
@@ -145,7 +143,6 @@
145143
<editor-input-field-pickable
146144
v-model="tempFormData.subjectName"
147145
:title="`${$t('common.lesson_data.labels.subject_name')} *`"
148-
label="lesson"
149146
placeholder="例)理科"
150147
class="LessonField"
151148
/>
@@ -161,7 +158,6 @@
161158
<editor-input-field-pickable
162159
v-model="tempFormData.title"
163160
:title="`${$t('common.lesson_data.labels.title')} *`"
164-
:label="$t('common.lesson_data.labels.title')"
165161
placeholder="例)理科"
166162
/>
167163
</div>

src/components/EditLessonScreenInner3.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<editor-input-field-pickable
44
v-model="tempFormData.videoUrl"
55
:title="$t('components.editing_screen.labels.video_url')"
6-
label="video"
76
placeholder="https://"
87
/>
98

src/components/EditLessonScreenInner4.vue

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,16 @@
33
<editor-input-field-pickable
44
v-model="tempFormData.pages"
55
:title="$t('components.editing_screen.labels.textbook_page')"
6-
label="textbook_page"
76
placeholder="例)10〜14ページ"
87
/>
98
<editor-input-field-pickable
109
v-model="tempFormData.materialsTitle"
1110
:title="$t('components.editing_screen.labels.material_title')"
12-
label="sub_text"
1311
placeholder="例)やさしい理科教材"
1412
/>
1513
<editor-input-field-pickable
1614
v-model="tempFormData.materialsUrl"
1715
:title="$t('components.editing_screen.labels.material_url')"
18-
label="sub_text_url"
1916
placeholder="https://"
2017
/>
2118
</div>

src/pages/edit/index.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
</li>
3535

3636
<li>
37-
<nuxt-link class="white--text" to="policy">
37+
<nuxt-link class="white--text" to="terms">
3838
{{ $t('common.footer.terms') }}
3939
</nuxt-link>
4040
</li>
@@ -67,7 +67,7 @@
6767
</li>
6868

6969
<li>
70-
<nuxt-link class="white--text" to="policy">
70+
<nuxt-link class="white--text" to="terms">
7171
{{ $t('common.footer.terms') }}
7272
</nuxt-link>
7373
</li>
@@ -100,7 +100,7 @@
100100
</li>
101101

102102
<li>
103-
<nuxt-link class="white--text" to="policy">
103+
<nuxt-link class="white--text" to="terms">
104104
{{ $t('common.footer.terms') }}
105105
</nuxt-link>
106106
</li>

src/pages/user/editUserEmail.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
<dd>
1919
<base-input-field
2020
v-model="email"
21-
label="email"
2221
:placeholder="$t('common.user_data.labels.email')"
2322
type="email"
2423
require

src/pages/user/editUserName.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
<dd>
1919
<base-input-field
2020
v-model="name"
21-
label="name"
2221
:placeholder="$t('common.user_data.labels.nickname')"
2322
require
2423
/>

src/pages/user/editUserPassword.vue

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
<dd>
1313
<base-input-field
1414
v-model="currentPassword"
15-
label="current password"
1615
:placeholder="$t('common.user_data.labels.password')"
1716
type="password"
1817
require
@@ -27,7 +26,6 @@
2726
<dd>
2827
<base-input-field
2928
v-model="newPassword"
30-
label="new password"
3129
:placeholder="$t('common.user_data.labels.password')"
3230
type="password"
3331
require
@@ -41,7 +39,6 @@
4139
<dd>
4240
<base-input-field
4341
v-model="confirmation"
44-
label="confirmation"
4542
:placeholder="$t('common.user_data.labels.password')"
4643
type="password"
4744
require

0 commit comments

Comments
 (0)