Skip to content

Commit 8eecc9b

Browse files
authored
Merge branch 'master' into bug/9816-dont-use-maxint-as-default-example
2 parents 768aeee + d9c778e commit 8eecc9b

File tree

1 file changed

+2
-2
lines changed
  • src/core/plugins/json-schema-2020-12

1 file changed

+2
-2
lines changed

src/core/plugins/json-schema-2020-12/fn.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -295,10 +295,10 @@ const stringifyConstraintRange = (label, min, max) => {
295295
}
296296
}
297297
if (hasMin) {
298-
return `>= ${min} ${label}`
298+
return ` ${min} ${label}`
299299
}
300300
if (hasMax) {
301-
return `<= ${max} ${label}`
301+
return ` ${max} ${label}`
302302
}
303303

304304
return null

0 commit comments

Comments
 (0)