1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-24 15:59:41 +02:00

fix(app): fix missing '=' char in state definitions

This commit is contained in:
Anthony Lapenna 2017-05-19 17:51:01 +02:00
parent 2ef1c90248
commit 69c7f116b1

View file

@ -202,7 +202,7 @@ angular.module('portainer', [
template: '<div ui-view="content@"></div>'
},
'sidebar@': {
template: '<div ui-view"sidebar@"></div>'
template: '<div ui-view="sidebar@"></div>'
}
}
})
@ -214,7 +214,7 @@ angular.module('portainer', [
template: '<div ui-view="content@"></div>'
},
'sidebar@': {
template: '<div ui-view"sidebar@"></div>'
template: '<div ui-view="sidebar@"></div>'
}
}
})