Skip to content

Instantly share code, notes, and snippets.

@matzew
Created December 12, 2017 07:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matzew/0ef48dd4e6e1bdc22d6fe2791b1ac111 to your computer and use it in GitHub Desktop.
Save matzew/0ef48dd4e6e1bdc22d6fe2791b1ac111 to your computer and use it in GitHub Desktop.
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
index 1ce4db2..165c099 100644
--- a/ui/public/scripts/components/client-setup/mp-client-setup.component.js
+++ b/ui/public/scripts/components/client-setup/mp-client-setup.component.js
@@ -38,7 +38,9 @@ angular.module('mobileControlPanelApp').component('mpClientSetup', {
this.openServiceIntegration = function(id) {
$location.url(
- `project/${$routeParams.project}/browse/mobileservices/${id}?tab=integrations`
+ `project/${
+ $routeParams.project
+ }/browse/mobileservices/${id}?tab=integrations`
);
};
}
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
index c9e1d17..a22345a 100644
--- 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
@@ -90,8 +90,9 @@ angular.module('mobileControlPanelApp').component('mpMobileClientTabs', {
if (action === ClientBuildEditorService.states.EDIT) {
ClientBuildEditorService.state = ClientBuildEditorService.states.EDIT;
$location.url(
- `project/${this.project.metadata.name}/browse/mobileapps/${this.app
- .id}?tab=buildConfig`
+ `project/${this.project.metadata.name}/browse/mobileapps/${
+ this.app.id
+ }?tab=buildConfig`
);
}
};
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
index 3651c99..c6abb43 100644
--- a/ui/public/scripts/components/mobile-client/mp-mobile-client.component.js
+++ b/ui/public/scripts/components/mobile-client/mp-mobile-client.component.js
@@ -66,7 +66,9 @@ angular.module('mobileControlPanelApp').component('mpMobileClient', {
this.startBuild = function(buildConfig) {
MobileClientService.startBuild(buildConfig).then(() => {
$location.url(
- `project/${$routeParams.project}/browse/mobileapps/${$routeParams.mobileapp}?tab=buildHistory`
+ `project/${$routeParams.project}/browse/mobileapps/${
+ $routeParams.mobileapp
+ }?tab=buildHistory`
);
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment