+4
src/components/lexicon-schema.tsx
+4
src/components/lexicon-schema.tsx
···
143
143
<Show when={props.property.maxGraphemes !== undefined}>
144
144
<span>maxGraphemes: {props.property.maxGraphemes}</span>
145
145
</Show>
146
+
<Show when={props.property.minGraphemes !== undefined}>
147
+
<span>minGraphemes: {props.property.minGraphemes}</span>
148
+
</Show>
146
149
<Show when={props.property.minimum !== undefined}>
147
150
<span>min: {props.property.minimum}</span>
148
151
</Show>
···
183
186
property.minLength !== undefined ||
184
187
property.maxLength !== undefined ||
185
188
property.maxGraphemes !== undefined ||
189
+
property.minGraphemes !== undefined ||
186
190
property.minimum !== undefined ||
187
191
property.maximum !== undefined ||
188
192
property.maxSize !== undefined ||