@westartcom/bread-quasar-fields 0.1.14 → 0.1.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -118,7 +118,8 @@ export default defineComponent({
|
|
|
118
118
|
|
|
119
119
|
computed : {
|
|
120
120
|
allowMultiple() {
|
|
121
|
-
return (this.field.extra_data && this.field.extra_data.multiple);
|
|
121
|
+
// return (this.field.extra_data && this.field.extra_data.multiple);
|
|
122
|
+
return true;
|
|
122
123
|
},
|
|
123
124
|
|
|
124
125
|
allowedMimeTypes() {
|
|
@@ -756,6 +756,8 @@ export default defineComponent({
|
|
|
756
756
|
margin-top: -10px;
|
|
757
757
|
|
|
758
758
|
.search {
|
|
759
|
+
border-bottom: 1px solid $grey-3;
|
|
760
|
+
|
|
759
761
|
.query-too-short {
|
|
760
762
|
display: block;
|
|
761
763
|
padding: 10px 15px;
|
|
@@ -763,7 +765,6 @@ export default defineComponent({
|
|
|
763
765
|
color: $negative;
|
|
764
766
|
border-top: 1px solid $negative;
|
|
765
767
|
}
|
|
766
|
-
border-bottom: 1px solid $grey-3;
|
|
767
768
|
}
|
|
768
769
|
|
|
769
770
|
.loading {
|