From 0ec2ac884f9a6b62cad75b2bb7a864cb980c1f44 Mon Sep 17 00:00:00 2001 From: MatthewSH Date: Fri, 31 May 2019 00:16:56 -0400 Subject: [PATCH] Check the boolean itself, not the value. --- .../themes/pterodactyl/admin/nodes/view/settings.blade.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/themes/pterodactyl/admin/nodes/view/settings.blade.php b/resources/themes/pterodactyl/admin/nodes/view/settings.blade.php index 5afd65ed4..7c66cdc75 100644 --- a/resources/themes/pterodactyl/admin/nodes/view/settings.blade.php +++ b/resources/themes/pterodactyl/admin/nodes/view/settings.blade.php @@ -67,8 +67,8 @@
- public) === '1') ? 'checked' : '' }} id="public_1" checked>
- public) === '0') ? 'checked' : '' }} id="public_0"> + public)) ? 'checked' : '' }} id="public_1" checked>
+ public)) ? '' : 'checked' }} id="public_0">