diff options
author | Mike Greiling <mike@pixelcog.com> | 2018-01-31 13:58:27 -0600 |
---|---|---|
committer | Mike Greiling <mike@pixelcog.com> | 2018-01-31 13:58:27 -0600 |
commit | e25f383ddc6b867dc4010be10518d79c663d7409 (patch) | |
tree | 964d6b406d102c7845ba6a9de8d8d96de50b6516 | |
parent | a97a4bdcf730c63f2e627682f66698741ba05526 (diff) | |
download | gitlab-ce-e25f383ddc6b867dc4010be10518d79c663d7409.tar.gz |
fix eslint and formatting issues
-rw-r--r-- | app/assets/javascripts/clusters/components/applications.vue | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/assets/javascripts/clusters/components/applications.vue b/app/assets/javascripts/clusters/components/applications.vue index 56c038aabd7..4c9766fb96f 100644 --- a/app/assets/javascripts/clusters/components/applications.vue +++ b/app/assets/javascripts/clusters/components/applications.vue @@ -22,14 +22,14 @@ type: String, required: false, default: '', - } + }, }, computed: { generalApplicationDescription() { return sprintf( - _.escape(s__(`ClusterIntegration|Install applications on your cluster. - Read more about %{helpLink}`)), - { + _.escape(s__( + 'ClusterIntegration|Install applications on your cluster. Read more about %{helpLink}', + )), { helpLink: `<a href="${this.helpPath}"> ${_.escape(s__('ClusterIntegration|installing applications'))} </a>`, |