<field reporter:label="Importance Horizon" name="importance_age" reporter:datatype="text"/>
<field reporter:label="Importance Interval" name="importance_interval" reporter:datatype="text"/>
<field reporter:label="Importance Scale" name="importance_scale" reporter:datatype="text"/>
- <field reporter:label="Percentile" name="percentile" reporter:datatype="int"/>
+ <field reporter:label="Percentile" name="percentile" reporter:datatype="float"/>
<field reporter:label="Attribute Filter" name="attr_filter" reporter:datatype="text"/>
<field reporter:label="Circ Mod Filter" name="circ_mod_filter" reporter:datatype="link"/>
<field reporter:label="Bib Source Filter" name="src_filter" reporter:datatype="link"/>
ng-model="record[field.name]"></input>
<input ng-if="field.datatype == 'int'" type="number"
ng-model="record[field.name]"></input>
+ <input ng-if="field.datatype == 'float'" type="number" step="0.1"
+ ng-model="record[field.name]"></input>
<span ng-if="field.datatype == 'link'" class="nullable">
<select ng-if="field.datatype == 'link'"
ng-options="item.id as item.name for item in field.linked_values"