use mode in console message
This commit is contained in:
parent
f6996a2274
commit
b0d2b53281
11 changed files with 36 additions and 43 deletions
|
@ -14,9 +14,9 @@ const showError = (text) => {
|
|||
};
|
||||
};
|
||||
|
||||
const hide = () => {
|
||||
const hideCommand = () => {
|
||||
return {
|
||||
type: actions.CONSOLE_HIDE
|
||||
type: actions.CONSOLE_HIDE_COMMAND,
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -40,5 +40,6 @@ const completionPrev = () => {
|
|||
};
|
||||
|
||||
export {
|
||||
showCommand, showError, hide, setCompletions, completionNext, completionPrev
|
||||
showCommand, showError, hideCommand,
|
||||
setCompletions, completionNext, completionPrev
|
||||
};
|
||||
|
|
Reference in a new issue