We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8a80c6 commit 887e48aCopy full SHA for 887e48a
1 file changed
public/themes/pterodactyl/js/frontend/console.js
@@ -212,9 +212,10 @@ var Console = (function () {
212
213
if (terminalQueue.length > 0) {
214
for (var i = 0; i < CONSOLE_PUSH_COUNT && terminalQueue.length > 0; i++) {
215
- terminal.echo(terminalQueue[0]);
+ terminal.echo(terminalQueue[0], {flush: false});
216
terminalQueue.shift();
217
}
218
+ terminal.flush()
219
220
// Show
221
if (!terminal.is_bottom()) {
0 commit comments