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"
|
@search-change="findNamespaces"
|
||||||
@select="select"
|
@select="select"
|
||||||
placeholder="Search for a namespace..."
|
placeholder="Search for a namespace..."
|
||||||
|
:showNoOptions="false"
|
||||||
label="title"
|
label="title"
|
||||||
track-by="id">
|
track-by="id">
|
||||||
<template slot="clear" slot-scope="props">
|
<template slot="clear" slot-scope="props">
|
||||||
|
|
|
@ -17,7 +17,8 @@
|
||||||
:loading="searchService.loading"
|
:loading="searchService.loading"
|
||||||
:internal-search="true"
|
:internal-search="true"
|
||||||
@search-change="find"
|
@search-change="find"
|
||||||
placeholder="Type to search"
|
placeholder="Type to search..."
|
||||||
|
:showNoOptions="false"
|
||||||
:label="searchLabel"
|
:label="searchLabel"
|
||||||
track-by="id">
|
track-by="id">
|
||||||
<template slot="clear" slot-scope="props">
|
<template slot="clear" slot-scope="props">
|
||||||
|
|
|
@ -81,7 +81,8 @@
|
||||||
:loading="userService.loading"
|
:loading="userService.loading"
|
||||||
:internal-search="true"
|
:internal-search="true"
|
||||||
@search-change="findUser"
|
@search-change="findUser"
|
||||||
placeholder="Type to search"
|
placeholder="Type to search..."
|
||||||
|
:showNoOptions="false"
|
||||||
label="username"
|
label="username"
|
||||||
track-by="id">
|
track-by="id">
|
||||||
<template slot="clear" slot-scope="props">
|
<template slot="clear" slot-scope="props">
|
||||||
|
|
Loading…
Reference in a new issue