Skip to content

Commit 6fdfa84

Browse files
committed
fix(QUploader): QUploader adds space on FF on the right due to the upload trigger quasarframework#4217
1 parent 2c1617f commit 6fdfa84

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"dev": "quasar dev",
1111
"dev:ssr": "quasar dev -m ssr",
1212
"build": "quasar build -m ssr",
13-
"deploy": "yarn build && cd dist/ssr && now --public",
13+
"deploy": "yarn build && cd dist/ssr && now --public --target production",
1414
"lint": "eslint --ext .js,.vue src",
1515
"test": "echo \"No test specified\" && exit 0"
1616
},

ui/src/components/uploader/QUploaderBase.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ export default {
355355
return [
356356
h('input', {
357357
ref: 'input',
358-
staticClass: 'q-uploader__input absolute-full',
358+
staticClass: 'q-uploader__input overflow-hidden absolute-full',
359359
attrs: {
360360
type: 'file',
361361
title: '', // try to remove default tooltip

0 commit comments

Comments
 (0)