From 3ec1afbfcefeb8d86c981cb5523ff07455f3974d Mon Sep 17 00:00:00 2001 From: Troy Lindsay Date: Sun, 9 Jan 2022 09:25:53 -0600 Subject: [PATCH] Fix assignment context (#453) --- layouts/partials/func/IsProduction.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/partials/func/IsProduction.html b/layouts/partials/func/IsProduction.html index 6360972..2017928 100644 --- a/layouts/partials/func/IsProduction.html +++ b/layouts/partials/func/IsProduction.html @@ -9,7 +9,7 @@ {{ $env := partial "func/GetEnvironmentName.html" . }} {{ if eq $env "production" }} - {{ $isProduction := true }} + {{ $isProduction = true }} {{ end }} {{ return $isProduction }}