Skip to content

Commit

Permalink
Add a tool tip for filtering out gene rows
Browse files Browse the repository at this point in the history
  • Loading branch information
drpowell committed Oct 2, 2024
1 parent 3265068 commit a601d0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion degust-frontend/degust-src/js/config.vue
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@
<multiselect v-model="filt.column" :options="column_names" :allow-empty="false" :searchable="false" :close-on-select="true" :show-labels="false" placeholder="--- Select ---"></multiselect>
</span>
<span class="controls col-sm-7">
<input v-model='filt.regexp' class="form-control" type="text" size='50' placeholder="Regex (Perl) must match to keep row" />
<input v-model='filt.regexp' class="form-control" type="text" size='50' placeholder="Regex (Perl) must match to keep row" v-tooltip.top="'Examples:<br/>Exclude Xist : ^(?!Xist)<br />Exclude mitochondrial genes : ^(?!mt-.*)'" />
</span>
<button v-on:click='delSettingFilter(idx)' type="button" class="del-condition" tabindex=-1>&times;</button>
</div>
Expand Down

0 comments on commit a601d0d

Please sign in to comment.