mirror of
https://github.com/ansible/awx.git
synced 2026-02-26 07:26:03 -03:30
Merge pull request #291 from Zokormazo/fix-const
Use const instead of let on never reassigned var
This commit is contained in:
@@ -11,7 +11,7 @@ function atSideNavLink (scope, element, attrs, ctrl) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function AtSideNavController ($scope, $window) {
|
function AtSideNavController ($scope, $window) {
|
||||||
let vm = this || {};
|
const vm = this || {};
|
||||||
const breakpoint = 700;
|
const breakpoint = 700;
|
||||||
|
|
||||||
vm.isExpanded = false;
|
vm.isExpanded = false;
|
||||||
|
|||||||
Reference in New Issue
Block a user