From a5ec75643366ef9e055ead3e29675708bc46baa9 Mon Sep 17 00:00:00 2001 From: jackie / Andrea Ida Malkah Klaura <jackie@diebin.at> Date: Wed, 25 Sep 2019 12:54:11 +0200 Subject: [PATCH] FEAT: logo and image upload work now fixes #5 --- src/components/ShowManagerModalShow.vue | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/components/ShowManagerModalShow.vue b/src/components/ShowManagerModalShow.vue index dbd0bb3f..c110e679 100644 --- a/src/components/ShowManagerModalShow.vue +++ b/src/components/ShowManagerModalShow.vue @@ -1004,14 +1004,12 @@ export default { if (this.show.logo === null) { this.string = '' } else { this.string = this.show.logo } this.file = null - //this.$refs.fileinputLogo.reset() this.$refs.modalLogo.show() }, showImage () { if (this.show.image === null) { this.string = '' } else { this.string = this.show.image } this.file = null - this.$refs.fileinputImage.reset() this.$refs.modalImage.show() } } -- GitLab