mirror of https://github.com/rancher/dashboard.git
change default hook option to None
This commit is contained in:
parent
bc416f0f44
commit
9fb9db1654
|
|
@ -5,6 +5,7 @@ import LabeledSelect from '@/components/form/LabeledSelect';
|
||||||
import ShellInput from '@/components/form/ShellInput';
|
import ShellInput from '@/components/form/ShellInput';
|
||||||
import debounce from 'lodash/debounce';
|
import debounce from 'lodash/debounce';
|
||||||
import { _VIEW } from '@/config/query-params';
|
import { _VIEW } from '@/config/query-params';
|
||||||
|
import { isEmpty } from '@/utils/object';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
props: {
|
props: {
|
||||||
|
|
@ -58,6 +59,11 @@ export default {
|
||||||
if (this.value) {
|
if (this.value) {
|
||||||
this.selectHook = Object.keys(this.value)[0];
|
this.selectHook = Object.keys(this.value)[0];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (isEmpty(this.value)) {
|
||||||
|
this.selectHook = 'none';
|
||||||
|
}
|
||||||
|
|
||||||
this.queueUpdate = debounce(this.update, 500);
|
this.queueUpdate = debounce(this.update, 500);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue