Fix for missing string translation, #3813
Ylian Saint-Hilaire committed
Mar 28, 2022 at 11:18 UTC
f2f0d2795cec29e0652133a9c65ab7001eca0f70
1 file changed
+1
-1
views/default.handlebars
+1
-1
@@ -11909,7 +11909,7 @@
11909
// Intel AMT setup
11910
var intelAmtPolicy = "No Policy";
11911
if (currentMesh.amt) {
11912
- if (currentMesh.amt.type == 1) { intelAmtPolicy = 'Deactivate'; }
11912
+ if (currentMesh.amt.type == 1) { intelAmtPolicy = "Deactivate"; }
11913
else if (currentMesh.amt.type == 2) {
11914
intelAmtPolicy = "Simple Client Control Mode (CCM)";
11915
if (currentMesh.amt.cirasetup == 2) { intelAmtPolicy += " + CIRA"; }