Skip to content

Commit a14d492

Browse files
committed
revert the no-gutters
1 parent b81f30f commit a14d492

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

packages/vue-vuetify/src/complex/components/AdditionalProperties.vue

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,8 @@
5656
</v-container>
5757
</v-expansion-panel-title>
5858
<v-expansion-panel-text class="additional-properties-panel">
59-
<v-container
60-
v-bind="vuetifyProps('v-container')"
61-
class="pa-0 ma-0"
62-
fluid
63-
>
59+
<v-container v-bind="vuetifyProps('v-container')" class="pa-0" fluid>
6460
<v-row
65-
no-gutters
6661
v-for="element in additionalPropertyItems"
6762
:key="`${element.propertyName}`"
6863
>
@@ -213,7 +208,6 @@ export default defineComponent({
213208
214209
const toAdditionalPropertyType = (
215210
propName: string,
216-
propValue: any,
217211
parentSchema: JsonSchema,
218212
rootSchema: JsonSchema,
219213
): AdditionalPropertyType => {
@@ -300,7 +294,6 @@ export default defineComponent({
300294
additionalKeys.value.map((propName) =>
301295
toAdditionalPropertyType(
302296
propName,
303-
control.value.data[propName],
304297
control.value.schema,
305298
control.value.rootSchema,
306299
),
@@ -537,7 +530,6 @@ export default defineComponent({
537530
this.additionalPropertyItems = this.additionalKeys.map((propName) =>
538531
this.toAdditionalPropertyType(
539532
propName,
540-
newData[propName],
541533
this.control.schema,
542534
this.control.rootSchema,
543535
),
@@ -553,7 +545,6 @@ export default defineComponent({
553545
if (this.newPropertyName) {
554546
const additionalProperty = this.toAdditionalPropertyType(
555547
this.newPropertyName,
556-
undefined,
557548
this.control.schema,
558549
this.control.rootSchema,
559550
);

0 commit comments

Comments
 (0)