Skip to content

Commit 9666131

Browse files
committed
#79 Fix a regression related to typeahead directive introduced by the upgrade of ui-bootstrap
1 parent 7b3ccc1 commit 9666131

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

ui/app/views/partials/case/case.merge.html

+8-8
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@ <h3 class="modal-title">Merge Case #{{dialog.caze.caseId}}</h3>
44
<div class="modal-body merge-dialog">
55
<div class="input-group input-group-lg search-field">
66
<input type="text"
7-
placeholder="{{dialog.search.placeholder}}"
8-
ng-model="dialog.search.input"
9-
typeahead-wait-ms="500"
10-
typeahead="caze as dialog.format(caze) for caze in dialog.getCaseByTitle(dialog.search.type, $viewValue)"
11-
typeahead-min-length="dialog.search.minInputLength"
12-
typeahead-on-select="dialog.onSelect($item)"
7+
placeholder="{{dialog.search.placeholder}}"
8+
ng-model="dialog.search.input"
9+
uib-typeahead="caze as dialog.format(caze) for caze in dialog.getCaseByTitle(dialog.search.type, $viewValue)"
10+
typeahead-wait-ms="500"
11+
typeahead-min-length="dialog.search.minInputLength"
12+
typeahead-on-select="dialog.onSelect($item)"
1313
class="form-control">
14-
14+
1515
<span class="input-group-addon">
1616
<input type="radio" name="search-type" ng-model="dialog.search.type" value="title" ng-change="dialog.onTypeChange('title')"> By Title
1717
<input type="radio" name="search-type" ng-model="dialog.search.type" value="number" ng-change="dialog.onTypeChange('number')"> By Number
1818
</span>
19-
19+
2020
</div>
2121

2222
<div class="empty-message mv-s" ng-show="dialog.search.cases.length === 0">

0 commit comments

Comments
 (0)