File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
packages/vue-vuetify/src/complex Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change 1
1
<template >
2
- <div : class =" [' prefixed-input'] " v-if =" control.visible" >
2
+ <div class =" prefixed-input" v-if =" control.visible" >
3
3
<template v-if =" valueType === ' array' || valueType === ' object' " >
4
4
<v-expansion-panels accordion flat v-model =" currentlyExpanded" >
5
5
<v-expansion-panel >
35
35
</v-expansion-panel-title >
36
36
<v-expansion-panel-text >
37
37
<dispatch-renderer
38
- : class =" [' input'] "
38
+ class =" input"
39
39
v-if =" schema && !(nullable && control.data === null)"
40
40
:schema =" schema"
41
41
:uischema =" uischema"
51
51
</template >
52
52
<template v-else >
53
53
<v-select
54
+ class =" select"
54
55
v-if =" mixedRenderInfos && mixedRenderInfos.length > 1"
55
56
v-disabled-icon-focus
56
57
:id =" control.id + '-input-selector'"
65
66
item-value =" index"
66
67
v-model =" selectedIndex"
67
68
v-bind =" vuetifyProps('v-select')"
69
+ @click.stop
68
70
@focus =" handleFocus"
69
71
@blur =" handleBlur"
70
72
>
71
73
</v-select >
72
74
<dispatch-renderer
73
- : class =" [' input'] "
75
+ class =" input"
74
76
v-if =" schema && !(nullable && control.data === null)"
75
77
:schema =" schema"
76
78
:uischema =" uischema"
@@ -447,6 +449,10 @@ export default controlRenderer;
447
449
align-items : center ;
448
450
}
449
451
452
+ .select {
453
+ flex-shrink : 0 ;
454
+ }
455
+
450
456
.input {
451
457
flex-grow : 1 ;
452
458
width : 100% ;
You can’t perform that action at this time.
0 commit comments