From 8b7f0ace3ac4e0f792644edc0e06821cb4fe4282 Mon Sep 17 00:00:00 2001 From: Mike Koch Date: Tue, 17 Oct 2017 21:48:58 -0400 Subject: [PATCH] Fixed error logger --- install/js/install-script.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install/js/install-script.js b/install/js/install-script.js index 8bf51617..097fc242 100644 --- a/install/js/install-script.js +++ b/install/js/install-script.js @@ -119,7 +119,8 @@ function executeMigration(migrationNumber, latestMigrationNumber, direction) { } catch (e) { message = response.responseText; } - $('#error-block').html("

An error occurred! (Error Code: " + migrationNumber + ")
" + message).show(); + $errorBlock = $('#error-block'); + $errorBlock.html($errorBlock.html() + "

An error occurred! (Error Code: " + migrationNumber + ")
" + message).show(); updateProgressBar(migrationNumber, latestMigrationNumber, true, false);