This commit is contained in:
Baobhan Sith
2025-04-27 08:32:04 +08:00
parent 51fe29a06a
commit 3063a53afa
2 changed files with 2 additions and 2 deletions
@@ -42,7 +42,7 @@ const searchTerm = ref('');
const sendCommand = () => {
const command = commandInput.value;
console.log(`[CommandInputBar] Sending command: ${command || '<Enter>'} `);
emit('send-command', command + '\n');
emit('send-command', command);
commandInput.value = '';
};