File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
resources/views/admin/servers Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ This project follows [Semantic Versioning](http://semver.org) guidelines.
2323* File manager actions would not trigger properly if text in a row was used to right-click from.
2424* File manager rename field would not disappear when pressing the escape key in chrome. [ #121 ] ( https://github.com/Pterodactyl/Panel/issues/121 )
2525* Fixes bug where server image assigned was not being saved to the database.
26+ * Fixes instances where selecting auto-deploy would not hide the node selection dropdown.
2627
2728## v0.5.0-pre.1 (Bodacious Boreopterus)
2829
Original file line number Diff line number Diff line change 354354
355355 $ (' input[name="auto_deploy"]' ).change (function () {
356356 if ($ (this ).is (' :checked' )) {
357- $ (' #allocationPort, #allocationIP, #allocationNode' ).addClass ( ' hidden ' );
357+ $ (' #allocationPort, #allocationIP, #allocationNode' ).hide ( );
358358 } else {
359359 currentLocation = null ;
360+ $ (' #allocationPort, #allocationIP, #allocationNode' ).show ().addClass (' hidden' );
360361 $ (' #getLocation' ).trigger (' change' , function (e ) {
361362 alert (' triggered' );
362363 });
You can’t perform that action at this time.
0 commit comments