From 91b7a9842db9ed15a97236655c7e0fbc7fa4ef9a Mon Sep 17 00:00:00 2001 From: Amaury Date: Fri, 1 Jun 2018 16:27:00 +0200 Subject: [PATCH] fix modal height --- client/src/components/Menu.vue | 4 ---- client/src/components/Playlist_List.vue | 2 -- client/src/components/modals/AddSong_modal.vue | 4 ++-- 3 files changed, 2 insertions(+), 8 deletions(-) diff --git a/client/src/components/Menu.vue b/client/src/components/Menu.vue index d4cfe94..b272af2 100644 --- a/client/src/components/Menu.vue +++ b/client/src/components/Menu.vue @@ -43,15 +43,11 @@ export default { methods: { show_login: function (event) { this.$modal.show(Login, {}, { - text: 'This text is passed as a property' - }, { height: 'auto' }) }, show_signup: function (event) { this.$modal.show(Signup, {}, { - text: 'This text is passed as a property' - }, { height: 'auto' }) }, diff --git a/client/src/components/Playlist_List.vue b/client/src/components/Playlist_List.vue index e4ada02..ca5cae6 100644 --- a/client/src/components/Playlist_List.vue +++ b/client/src/components/Playlist_List.vue @@ -57,8 +57,6 @@ export default { }, show_add: function (event) { this.$modal.show(CreatePlaylist, {}, { - text: 'This text is passed as a property' - }, { height: 'auto' }) } diff --git a/client/src/components/modals/AddSong_modal.vue b/client/src/components/modals/AddSong_modal.vue index b012e84..a8dc82e 100644 --- a/client/src/components/modals/AddSong_modal.vue +++ b/client/src/components/modals/AddSong_modal.vue @@ -13,9 +13,9 @@