From b301d146bebe5a01f0a1db91f351c966594d1be8 Mon Sep 17 00:00:00 2001 From: Christian Kuhn <lolli@schwarzbu.ch> Date: Tue, 22 Aug 2017 12:39:30 +0200 Subject: [PATCH] [BUGFIX] Install tool: Double <hr> in upgrade wizards Remove <hr> of last wizard. Change-Id: I25a52d882e99333d4598e1dcc632300e2a8860ac Resolves: #82158 Releases: master Reviewed-on: https://review.typo3.org/53768 Tested-by: TYPO3com <no-reply@typo3.com> Reviewed-by: Frans Saris <franssaris@gmail.com> Reviewed-by: Mona Muzaffar <mona.muzaffar@gmx.de> Tested-by: Mona Muzaffar <mona.muzaffar@gmx.de> Reviewed-by: Andreas Fernandez <typo3@scripting-base.de> Tested-by: Andreas Fernandez <typo3@scripting-base.de> --- .../Resources/Public/JavaScript/Modules/UpgradeWizards.js | 1 + 1 file changed, 1 insertion(+) diff --git a/typo3/sysext/install/Resources/Public/JavaScript/Modules/UpgradeWizards.js b/typo3/sysext/install/Resources/Public/JavaScript/Modules/UpgradeWizards.js index 060e2918b93f..fb549f607e7a 100644 --- a/typo3/sysext/install/Resources/Public/JavaScript/Modules/UpgradeWizards.js +++ b/typo3/sysext/install/Resources/Public/JavaScript/Modules/UpgradeWizards.js @@ -296,6 +296,7 @@ function($, FlashMessage, ProgressBar, InfoBox, Severity) { list.find(self.selectorWizardsListRows).append(aRow); } }); + list.find(self.selectorWizardsListRows + ' hr:last').remove(); } var percent = 100; if (numberOfWizardsTodo > 0) { -- GitLab