diff --git a/resources/assets/scripts/components/server/subpages/Console.ts b/resources/assets/scripts/components/server/subpages/Console.ts index 87e0ea90f..415b0ef3f 100644 --- a/resources/assets/scripts/components/server/subpages/Console.ts +++ b/resources/assets/scripts/components/server/subpages/Console.ts @@ -94,8 +94,7 @@ export default Vue.component('server-console', { */ sendCommand: function () { this.commandHistoryIndex = -1; - // this.commandHistory.unshift(this.command); - this.commandHistory.unshift(); + this.commandHistory.unshift(this.command); this.$socket().instance().emit('send command', this.command); this.command = ''; },