You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/opnsense/mvc/app/views/OPNsense/Core/firmware.volt
+3-4Lines changed: 3 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -202,15 +202,14 @@
202
202
// reboot required, inform the user.
203
203
BootstrapDialog.show({
204
204
type:BootstrapDialog.TYPE_WARNING,
205
-
title: "{{ lang._('Reboot/ Power off required') }}",
206
-
message: "{{ lang._('The firewall will reboot directly after this set reinstall.') }}"+'<br><br><label><input type="checkbox" id="reinstall_shutdown_cb"> '+'{{ lang._("Power off instead of reboot") }}</label>',
205
+
title: "{{ lang._('Reboot required') }}",
206
+
message: "{{ lang._('The firewall will reboot directly after this set reinstall.') }}",
207
207
buttons: [{
208
208
label: "{{ lang._('OK') }}",
209
209
cssClass: 'btn-warning',
210
210
action: function(dialogRef){
211
-
let doShutdown = $('#reinstall_shutdown_cb').is(':checked') ? '1' : '0';
0 commit comments