Don't show a confusing message if no options are available
This commit is contained in:
parent
4e401f754c
commit
6662cbe264
3 changed files with 5 additions and 2 deletions
|
@ -9,6 +9,7 @@
|
|||
@search-change="findNamespaces"
|
||||
@select="select"
|
||||
placeholder="Search for a namespace..."
|
||||
:showNoOptions="false"
|
||||
label="title"
|
||||
track-by="id">
|
||||
<template slot="clear" slot-scope="props">
|
||||
|
|
|
@ -17,7 +17,8 @@
|
|||
:loading="searchService.loading"
|
||||
:internal-search="true"
|
||||
@search-change="find"
|
||||
placeholder="Type to search"
|
||||
placeholder="Type to search..."
|
||||
:showNoOptions="false"
|
||||
:label="searchLabel"
|
||||
track-by="id">
|
||||
<template slot="clear" slot-scope="props">
|
||||
|
|
|
@ -81,7 +81,8 @@
|
|||
:loading="userService.loading"
|
||||
:internal-search="true"
|
||||
@search-change="findUser"
|
||||
placeholder="Type to search"
|
||||
placeholder="Type to search..."
|
||||
:showNoOptions="false"
|
||||
label="username"
|
||||
track-by="id">
|
||||
<template slot="clear" slot-scope="props">
|
||||
|
|
Loading…
Reference in a new issue