Fixed error logger

master
Mike Koch 7 years ago
parent d35cf4d358
commit 8b7f0ace3a
No known key found for this signature in database
GPG Key ID: 9BA5D7F8391455ED

@ -119,7 +119,8 @@ function executeMigration(migrationNumber, latestMigrationNumber, direction) {
} catch (e) {
message = response.responseText;
}
$('#error-block').html("<br><br>An error occurred! (Error Code: " + migrationNumber + ")<br>" + message).show();
$errorBlock = $('#error-block');
$errorBlock.html($errorBlock.html() + "<br><br>An error occurred! (Error Code: " + migrationNumber + ")<br>" + message).show();
updateProgressBar(migrationNumber, latestMigrationNumber, true, false);

Loading…
Cancel
Save