Skip to content

Commit 2e6ae48

Browse files
committed
fix(QFile): prevent focus on filler input
1 parent 48492da commit 2e6ae48

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ui/src/components/file/QFile.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,8 @@ export default Vue.extend({
174174
return [
175175
h('input', {
176176
class: [ this.inputClass, 'q-file__filler' ],
177-
style: this.inputStyle
177+
style: this.inputStyle,
178+
tabindex: -1
178179
})
179180
]
180181
},

0 commit comments

Comments
 (0)