From 2883437a0fbb170fd8134adfd0e39e274354c1d0 Mon Sep 17 00:00:00 2001 From: NGPixel Date: Sun, 6 Oct 2019 15:06:46 -0400 Subject: [PATCH] fix: hide item upload button (#1058) --- client/components/editor/editor-modal-media.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/client/components/editor/editor-modal-media.vue b/client/components/editor/editor-modal-media.vue index 4abd9b41..d7907e5d 100644 --- a/client/components/editor/editor-modal-media.vue +++ b/client/components/editor/editor-modal-media.vue @@ -132,7 +132,7 @@ v-icon.mr-3(:color='$vuetify.theme.dark ? `white` : `teal`') mdi-cloud-upload .body-2(:class='$vuetify.theme.dark ? `white--text` : `teal--text`') {{$t('editor:assets.uploadAssets')}} v-btn.my-0.ml-3.mr-0.radius-7(outlined, large, color='teal', @click='browse', v-if='$vuetify.breakpoint.mdAndUp') - v-icon(left) mdi-library-plus + v-icon(left) mdi-plus-box-multiple span(:class='$vuetify.theme.dark ? `teal--text text--lighten-3` : ``') {{$t('common:actions.browse')}} file-pond.mt-3( name='mediaUpload' @@ -590,6 +590,10 @@ export default { } } + .filepond--file-action-button.filepond--action-process-item { + display: none; + } + .v-btn--icon { padding: 0 20px; }