Skip to content

Commit

Permalink
feat(QSelect): move dropdown indicator in before append slot to match…
Browse files Browse the repository at this point in the history
… loading indicator
  • Loading branch information
pdanpdan committed Sep 8, 2023
1 parent adf6f5d commit 5347caa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ui/src/components/field/QField.js
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,10 @@ export default Vue.extend({
)
}

this.__getInnerAppend !== void 0 && node.push(
this.__getInnerAppendNode(h, 'inner-append', this.__getInnerAppend(h))
)

this.$scopedSlots.append !== void 0 && node.push(
h('div', {
staticClass: 'q-field__append q-field__marginal row no-wrap items-center',
Expand All @@ -327,10 +331,6 @@ export default Vue.extend({
}, this.$scopedSlots.append())
)

this.__getInnerAppend !== void 0 && node.push(
this.__getInnerAppendNode(h, 'inner-append', this.__getInnerAppend(h))
)

this.__getControlChild !== void 0 && node.push(
this.__getControlChild(h)
)
Expand Down

0 comments on commit 5347caa

Please sign in to comment.