Guest User

Untitled

a guest
Dec 14th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.46 KB | None | 0 0
  1. diff --git a/ui/public/scripts/components/client-setup/mp-client-setup.component.js b/ui/public/scripts/components/client-setup/mp-client-setup.component.js
  2. index 1ce4db2..165c099 100644
  3. --- a/ui/public/scripts/components/client-setup/mp-client-setup.component.js
  4. +++ b/ui/public/scripts/components/client-setup/mp-client-setup.component.js
  5. @@ -38,7 +38,9 @@ angular.module('mobileControlPanelApp').component('mpClientSetup', {
  6.  
  7. this.openServiceIntegration = function(id) {
  8. $location.url(
  9. - `project/${$routeParams.project}/browse/mobileservices/${id}?tab=integrations`
  10. + `project/${
  11. + $routeParams.project
  12. + }/browse/mobileservices/${id}?tab=integrations`
  13. );
  14. };
  15. }
  16. diff --git a/ui/public/scripts/components/mobile-client/mp-mobile-client-tabs.component.js b/ui/public/scripts/components/mobile-client/mp-mobile-client-tabs.component.js
  17. index c9e1d17..a22345a 100644
  18. --- a/ui/public/scripts/components/mobile-client/mp-mobile-client-tabs.component.js
  19. +++ b/ui/public/scripts/components/mobile-client/mp-mobile-client-tabs.component.js
  20. @@ -90,8 +90,9 @@ angular.module('mobileControlPanelApp').component('mpMobileClientTabs', {
  21. if (action === ClientBuildEditorService.states.EDIT) {
  22. ClientBuildEditorService.state = ClientBuildEditorService.states.EDIT;
  23. $location.url(
  24. - `project/${this.project.metadata.name}/browse/mobileapps/${this.app
  25. - .id}?tab=buildConfig`
  26. + `project/${this.project.metadata.name}/browse/mobileapps/${
  27. + this.app.id
  28. + }?tab=buildConfig`
  29. );
  30. }
  31. };
  32. diff --git a/ui/public/scripts/components/mobile-client/mp-mobile-client.component.js b/ui/public/scripts/components/mobile-client/mp-mobile-client.component.js
  33. index 3651c99..c6abb43 100644
  34. --- a/ui/public/scripts/components/mobile-client/mp-mobile-client.component.js
  35. +++ b/ui/public/scripts/components/mobile-client/mp-mobile-client.component.js
  36. @@ -66,7 +66,9 @@ angular.module('mobileControlPanelApp').component('mpMobileClient', {
  37. this.startBuild = function(buildConfig) {
  38. MobileClientService.startBuild(buildConfig).then(() => {
  39. $location.url(
  40. - `project/${$routeParams.project}/browse/mobileapps/${$routeParams.mobileapp}?tab=buildHistory`
  41. + `project/${$routeParams.project}/browse/mobileapps/${
  42. + $routeParams.mobileapp
  43. + }?tab=buildHistory`
  44. );
  45. });
  46. };
Add Comment
Please, Sign In to add comment