We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da0f524 commit 5cbd4caCopy full SHA for 5cbd4ca
ui/src/components/expansion-item/QExpansionItem.js
@@ -138,7 +138,9 @@ export default Vue.extend({
138
const child = [
139
h(QIcon, {
140
staticClass: 'q-expansion-item__toggle-icon',
141
- class: this.showing === true ? 'q-expansion-item__toggle-icon--rotated' : void 0,
+ class: this.expandedIcon === void 0 && this.showing === true
142
+ ? 'q-expansion-item__toggle-icon--rotated'
143
+ : void 0,
144
props: { name: this.expansionIcon }
145
})
146
]
0 commit comments