Skip to content

Commit

Permalink
fix(QField): prevent focus when clicking on bottom slot #14383 (#14386)
Browse files Browse the repository at this point in the history
  • Loading branch information
pdanpdan committed Sep 14, 2022
1 parent 1c618b7 commit 8d7a7f6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ui/src/components/field/QField.js
Expand Up @@ -430,7 +430,8 @@ export default Vue.extend({

return h('div', {
staticClass: 'q-field__bottom row items-start q-field__bottom--' +
(this.hideBottomSpace !== true ? 'animated' : 'stale')
(this.hideBottomSpace !== true ? 'animated' : 'stale'),
on: { click: prevent }
}, [
this.hideBottomSpace === true
? main
Expand Down

0 comments on commit 8d7a7f6

Please sign in to comment.