Skip to content

Commit

Permalink
Update: search options now start with starts with
Browse files Browse the repository at this point in the history
  • Loading branch information
awf-dbca committed Jul 24, 2024
1 parent 37f0251 commit 2a35725
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,7 @@
</div>
<div class="panel-body collapse in" :id="kBody">
<div class="form-group">
<div class="row">
<div class="form-check form-check-inline col-md-3">
<input type="radio" value="contains" v-model="search_option" checked/>
<label class="form-check-label">Contains</label>
</div>
<div class="row">
<div class="form-check form-check-inline col-md-3">
<input type="radio" value="starts_with" v-model="search_option"/>
<label class="form-check-label">Starts with</label>
Expand All @@ -27,6 +23,10 @@
<input type="radio" value="ends_with" v-model="search_option"/>
<label class="form-check-label">Ends with</label>
</div>
<div class="form-check form-check-inline col-md-3">
<input type="radio" value="contains" v-model="search_option"/>
<label class="form-check-label">Contains</label>
</div>
</div>
<div class="row">
<!--label for="person_lookup" class="col-sm-3 control-label">Search</label-->
Expand Down Expand Up @@ -198,7 +198,7 @@ export default {
cBody: 'cBody' + vm._uid,
kBody: 'kBody' + vm._uid,
loading: [],
search_option: "contains",
search_option: "starts_with",
searchKeywords: [],
hasSearchKeywords: false,
selected_organisation:'',
Expand Down

0 comments on commit 2a35725

Please sign in to comment.