diff options
author | Filipa Lacerda <filipa@gitlab.com> | 2018-02-20 17:34:55 +0000 |
---|---|---|
committer | Filipa Lacerda <filipa@gitlab.com> | 2018-02-20 17:34:55 +0000 |
commit | 7712b151ebd842ba507f8d4e3a95cf809c03c764 (patch) | |
tree | aa603dfe3d44f9f3dd3842d87fcb9b88bd33fe45 | |
parent | e1d587f5d6fe76900dd7cce26178464d4455fb8b (diff) | |
download | gitlab-ce-7712b151ebd842ba507f8d4e3a95cf809c03c764.tar.gz |
Remove extra commas from templates
-rw-r--r-- | app/assets/javascripts/clusters/components/applications.vue | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/app/assets/javascripts/clusters/components/applications.vue b/app/assets/javascripts/clusters/components/applications.vue index bddc8756a1b..fce2ea14ef9 100644 --- a/app/assets/javascripts/clusters/components/applications.vue +++ b/app/assets/javascripts/clusters/components/applications.vue @@ -143,10 +143,8 @@ :request-reason="applications.helm.requestReason" > <div slot="description"> - {{ s__( - `ClusterIntegration|Helm streamlines installing and managing Kubernetes applications. - Tiller runs inside of your Kubernetes Cluster, and manages releases of your charts.`, - ) }} + {{ s__(`ClusterIntegration|Helm streamlines installing and managing Kubernetes applications. + Tiller runs inside of your Kubernetes Cluster, and manages releases of your charts.`) }} </div> </application-row> <application-row @@ -160,11 +158,9 @@ > <div slot="description"> <p> - {{ s__( - `ClusterIntegration|Ingress gives you a way to route + {{ s__(`ClusterIntegration|Ingress gives you a way to route requests to services based on the request host or path, - centralizing a number of services into a single entrypoint.`, - ) }} + centralizing a number of services into a single entrypoint.`) }} </p> <template v-if="ingressInstalled"> |