From 22887c47bca5129eaed570206f067f2d2055aad1 Mon Sep 17 00:00:00 2001 From: Julen Landa Alustiza Date: Mon, 25 Sep 2017 22:59:35 +0200 Subject: [PATCH] Use const instead of let on never reassigned var Signed-off-by: Julen Landa Alustiza --- awx/ui/client/lib/components/layout/side-nav.directive.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui/client/lib/components/layout/side-nav.directive.js b/awx/ui/client/lib/components/layout/side-nav.directive.js index 85ee926cec..f74f76fd5d 100644 --- a/awx/ui/client/lib/components/layout/side-nav.directive.js +++ b/awx/ui/client/lib/components/layout/side-nav.directive.js @@ -11,7 +11,7 @@ function atSideNavLink (scope, element, attrs, ctrl) { } function AtSideNavController ($scope, $window) { - let vm = this || {}; + const vm = this || {}; const breakpoint = 700; vm.isExpanded = false;