Skip to content

Commit 03505ba

Browse files
committed
fix #636
1 parent fef7e1c commit 03505ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/official-site/sqlpage/migrations/01_documentation.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ INSERT INTO parameter(component, name, description, type, top_level, optional) S
248248
('options', 'A json array of objects containing the label and value of all possible options of a select field. Used only when type=select. JSON objects in the array can contain the properties "label", "value" and "selected".', 'JSON', FALSE, TRUE),
249249
('required', 'Set this to true to prevent the form contents from being sent if this field is left empty by the user.', 'BOOLEAN', FALSE, TRUE),
250250
('min', 'The minimum value to accept for an input of type number', 'REAL', FALSE, TRUE),
251-
('max', 'The minimum value to accept for an input of type number', 'REAL', FALSE, TRUE),
251+
('max', 'The maximum value to accept for an input of type number', 'REAL', FALSE, TRUE),
252252
('checked', 'Used only for checkboxes and radio buttons. Indicates whether the checkbox should appear as already checked.', 'BOOLEAN', FALSE, TRUE),
253253
('multiple', 'Used only for select elements. Indicates that multiple elements can be selected simultaneously. When using multiple, you should add square brackets after the variable name: ''my_variable[]'' as name', 'BOOLEAN', FALSE, TRUE),
254254
('searchable', 'For select and multiple-select elements, displays them with a nice dropdown that allows searching for options.', 'BOOLEAN', FALSE, TRUE),

0 commit comments

Comments
 (0)