Skip to content

Commit f769c66

Browse files
Spaceman1984rohityadavcloud
authored andcommitted
ui: fix default text missing from network selection on instance wizard (apache#3865)
This PR fixes the missing "Default" display issue on the instance wizard when selecting a network. Fixes: apache#3633
1 parent d88c614 commit f769c66

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

ui/scripts/ui-custom/instanceWizard.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -330,9 +330,8 @@
330330
.attr('checked', false);
331331
}
332332
})
333-
.after(
334-
$('<div>').addClass('name').html(options.secondary.desc)
335-
)
333+
).append(
334+
$('<div>').addClass('name').html(options.secondary.desc)
336335
).appendTo($select);
337336
}
338337
});

0 commit comments

Comments
 (0)