open-vault/ui/app/templates/components/navigate-input.hbs
Matthew Irish 458c59490f
ui kv routing fix (#5650)
* fix passing initialKey to the top level secret create page

* add service that uses the private routing service because of various bugs

* make custom router service more like the bundled router service

* clear the store cache when the model changes
2018-11-02 12:03:46 -05:00

20 lines
557 B
Handlebars

<div class="field">
<p class="control has-icons-left has-icons-right">
<input
class="filter input"
disabled={{disabled}}
value={{@filter}}
placeholder={{ or @placeholder "Filter keys" }}
type="text"
oninput={{action "handleInput" value="target.value"}}
onkeyup={{action "handleKeyUp" }}
onkeydown={{action "handleKeyPress"}}
onfocus={{action "setFilterFocused" true}}
onblur={{action "setFilterFocused" false}}
/>
{{i-con glyph="ios-search-strong" class="is-left has-text-grey" size=18}}
</p>
</div>