From 48653808b823acfb27fe59d1757ea92ffcbbba6d Mon Sep 17 00:00:00 2001 From: Darrin Husselmann Date: Wed, 5 Feb 2020 11:14:56 +0200 Subject: [PATCH] Fixed default text missing from network selection on instance wizard --- ui/scripts/ui-custom/instanceWizard.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ui/scripts/ui-custom/instanceWizard.js b/ui/scripts/ui-custom/instanceWizard.js index 4fa7e3fc76c0..b732b9ccf4b4 100644 --- a/ui/scripts/ui-custom/instanceWizard.js +++ b/ui/scripts/ui-custom/instanceWizard.js @@ -330,9 +330,8 @@ .attr('checked', false); } }) - .after( - $('
').addClass('name').html(options.secondary.desc) - ) + ).append( + $('
').addClass('name').html(options.secondary.desc) ).appendTo($select); } });