port 4.1: migrate field type text to string

This commit is contained in:
aina-esokia
2019-01-11 14:45:33 +04:00
parent 8c41dc28c7
commit d2bdd2ed4a
11 changed files with 70 additions and 10 deletions

View File

@@ -130,7 +130,6 @@
<select id="type">
<option <%= field.type == '' ? 'selected' : '' %> value=""></option>
<option <%= field.type == 'string' ? 'selected' : '' %> value="string">string</option>
<option <%= field.type == 'text' ? 'selected' : '' %> value="text">text</option>
<option <%= field.type == 'number' ? 'selected' : '' %> value="number">number</option>
<option <%= field.type == 'date' ? 'selected' : '' %> value="date">date</option>
</select>