Commit 5334af7c authored by Robert Knight's avatar Robert Knight

Fix single annotation page

4d210869 removed registration of the
`api` service from Angular, but the component for the single annotation
page still needs it.
parent 994a1324
...@@ -274,6 +274,7 @@ function startAngularApp(config) { ...@@ -274,6 +274,7 @@ function startAngularApp(config) {
// Register services, the store and utilities with Angular, so that // Register services, the store and utilities with Angular, so that
// Angular components can use them. // Angular components can use them.
.service('analytics', () => container.get('analytics')) .service('analytics', () => container.get('analytics'))
.service('api', () => container.get('api'))
.service('auth', () => container.get('auth')) .service('auth', () => container.get('auth'))
.service('bridge', () => container.get('bridge')) .service('bridge', () => container.get('bridge'))
.service('features', () => container.get('features')) .service('features', () => container.get('features'))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment