Skip to content

Commit c5de809

Browse files
authored
Merge pull request #391 from kaizumaki/aws-migration
v-snackbarからabsoluteのpropsを削除
2 parents 17d467a + cda3221 commit c5de809

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

src/components/EditLessonScreen.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
</v-container>
4545
</v-card-actions>
4646
</v-card>
47-
<v-snackbar v-model="error" :timeout="5000" absolute top color="#C01B61">
47+
<v-snackbar v-model="error" :timeout="5000" top color="#C01B61">
4848
{{ $t('components.editing_screen.error.could_not_add_lesson') }}
4949
</v-snackbar>
5050
</v-bottom-sheet>

src/components/EditingVisibilityDialog.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@
4040
</div>
4141
</template>
4242
</base-dialog>
43-
<v-snackbar v-model="error" :timeout="5000" absolute top color="#C01B61">
43+
<v-snackbar v-model="error" :timeout="5000" top color="#C01B61">
4444
{{
4545
$t(
4646
'components.editing_visibility_dialog.error.could_not_change_visibility'
4747
)
4848
}}
4949
</v-snackbar>
50-
<v-snackbar v-model="success" :timeout="5000" absolute top color="success">
50+
<v-snackbar v-model="success" :timeout="5000" top color="success">
5151
{{ $t('components.editing_visibility_dialog.success.message') }}
5252
</v-snackbar>
5353
</div>

src/pages/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
</div>
8484
</v-flex>
8585
</v-flex>
86-
<v-snackbar v-model="error" :timeout="5000" absolute top color="#C01B61">
86+
<v-snackbar v-model="error" :timeout="5000" top color="#C01B61">
8787
{{ $t('pages.index.error.invalid_class_id') }}
8888
</v-snackbar>
8989
</v-layout>

src/pages/user/editUserData.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
</v-btn>
8989
</template>
9090
</base-bottom-sheet-layer>
91-
<v-snackbar v-model="error" :timeout="5000" absolute top color="#C01B61">
91+
<v-snackbar v-model="error" :timeout="5000" top color="#C01B61">
9292
{{ $t('common.general.error.default') }}
9393
</v-snackbar>
9494
</div>

src/pages/user/login.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
</div>
5656
</template>
5757
</base-bottom-sheet-layer>
58-
<v-snackbar v-model="error" :timeout="5000" absolute top color="#C01B61">
58+
<v-snackbar v-model="error" :timeout="5000" top color="#C01B61">
5959
{{ $t('pages.user_login.error.invalid') }}
6060
</v-snackbar>
6161
</div>
@@ -95,7 +95,7 @@ export default Vue.extend({
9595
try {
9696
await Auth.signIn(this.email, this.password)
9797
// await vxm.user.login()
98-
this.$router.push('/user/classlist')
98+
await this.$router.push('/user/classlist')
9999
} catch (err) {
100100
this.loading = false
101101
this.error = true

src/pages/user/logout.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
:title="$t('pages.user_logout.title')"
66
title-en="LOGOUT"
77
/>
8-
<v-snackbar v-model="error" :timeout="5000" absolute top color="#C01B61">
8+
<v-snackbar v-model="error" :timeout="5000" top color="#C01B61">
99
{{ $t('pages.user_logout.error.invalid') }}
1010
</v-snackbar>
1111
</div>

src/pages/user/registerClass.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
/>
4444
</template>
4545
</base-bottom-sheet-layer>
46-
<v-snackbar v-model="error" :timeout="5000" absolute color="#C01B61" top>
46+
<v-snackbar v-model="error" :timeout="5000" top color="#C01B61">
4747
{{ $t('pages.user_register_class.error.default') }}
4848
</v-snackbar>
4949
</div>

src/pages/user/signup.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
</div>
7878
</template>
7979
</base-bottom-sheet-layer>
80-
<v-snackbar v-model="error" :timeout="5000" absolute top color="#C01B61">
80+
<v-snackbar v-model="error" :timeout="5000" top color="#C01B61">
8181
{{ $t('common.general.error.default') }}
8282
</v-snackbar>
8383
<v-dialog v-model="completion" max-width="460px">

src/pages/user/verify.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
</div>
5656
</template>
5757
</base-bottom-sheet-layer>
58-
<v-snackbar v-model="error" :timeout="5000" absolute top color="#C01B61">
58+
<v-snackbar v-model="error" :timeout="5000" top color="#C01B61">
5959
{{ $t('pages.user_verify.error.invalid') }}
6060
</v-snackbar>
6161
</div>

0 commit comments

Comments
 (0)