We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45c3464 commit ebda9f8Copy full SHA for ebda9f8
packages/vue-vuetify/src/complex/components/AdditionalProperties.vue
@@ -224,18 +224,6 @@ export default defineComponent({
224
propSchema = Resolve.schema(propSchema, propSchema.$ref, rootSchema);
225
}
226
227
- if (!propSchema && propValue !== undefined) {
228
- // can't find the propertySchema so use the schema based on the value
229
- // this covers case where the data in invalid according to the schema
230
- propSchema = Generate.jsonSchema(
231
- { prop: propValue },
232
- {
233
- additionalProperties: true,
234
- required: (_props: { [property: string]: JsonSchema4 }) => false,
235
- },
236
- ).properties?.prop;
237
- }
238
-
239
propSchema = propSchema ?? {};
240
241
if (propSchema.type === undefined) {
0 commit comments