We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ba7a98 commit 75bd68aCopy full SHA for 75bd68a
ui/src/components/banner/QBanner.js
@@ -19,21 +19,16 @@ export default Vue.extend({
19
},
20
21
render (h) {
22
- const child = []
23
const actions = slot(this, 'action')
24
- const avatar = slot(this, 'avatar')
25
-
26
- avatar !== void 0 && child.push(
+ const child = [
27
h('div', {
28
staticClass: 'q-banner__avatar col-auto row items-center self-start'
29
- }, avatar)
30
- )
+ }, slot(this, 'avatar')),
31
32
- child.push(
33
34
staticClass: 'q-banner__content col text-body2'
35
}, slot(this, 'default'))
36
+ ]
37
38
actions !== void 0 && child.push(
39
0 commit comments