diff options
author | Mateja <mail@matejamaric.com> | 2021-03-14 19:53:12 +0100 |
---|---|---|
committer | Mateja <mail@matejamaric.com> | 2021-03-14 19:53:12 +0100 |
commit | 682803b3a6d39f00aaf64499e1226859e6fda801 (patch) | |
tree | 180ec55a9cb7c7fdb85df1c9c920b6b148d5d555 /resources/js/components | |
parent | cc323d95fa3cad2d3ba437c37c4f29f8dff854eb (diff) | |
download | yota-laravel-682803b3a6d39f00aaf64499e1226859e6fda801.tar.gz yota-laravel-682803b3a6d39f00aaf64499e1226859e6fda801.zip |
Add label to `call-sign-filter` component.
Diffstat (limited to 'resources/js/components')
-rw-r--r-- | resources/js/components/call-sign-filter.vue | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/resources/js/components/call-sign-filter.vue b/resources/js/components/call-sign-filter.vue index a19b8a6..8e3228c 100644 --- a/resources/js/components/call-sign-filter.vue +++ b/resources/js/components/call-sign-filter.vue @@ -1,8 +1,11 @@ <template> - <select v-model="selected"> - <option value="all">All</option> - <option v-for="option in options" :value="option.sign" v-text="option.sign"></option> - </select> + <div> + <label for="call-sign">Filter by special callsign: </label> + <select id="call-sign" v-model="selected"> + <option value="all">All</option> + <option v-for="option in options" :value="option.sign" v-text="option.sign"></option> + </select> + </div> </template> <script> |