diff options
author | Michel Engelen <michel.engelen@diva-e.com> | 2019-06-14 11:28:16 +0200 |
---|---|---|
committer | Michel Engelen <michel@nomorejs.net> | 2019-07-02 14:29:54 +0200 |
commit | 2ded70292eee23fe2db89cc584ef5a2f8c42c6d8 (patch) | |
tree | 8dee9e13c6b8bd2aee3ba0d46a2a182dfbbc521c /app | |
parent | 4169421049e1909bddc49582f7ebd89bd504af00 (diff) | |
download | gitlab-ce-2ded70292eee23fe2db89cc584ef5a2f8c42c6d8.tar.gz |
prettified noteable_discussion component and updated tests
Diffstat (limited to 'app')
-rw-r--r-- | app/assets/javascripts/notes/components/noteable_discussion.vue | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/app/assets/javascripts/notes/components/noteable_discussion.vue b/app/assets/javascripts/notes/components/noteable_discussion.vue index 13cc1ade7ae..0031056ad4f 100644 --- a/app/assets/javascripts/notes/components/noteable_discussion.vue +++ b/app/assets/javascripts/notes/components/noteable_discussion.vue @@ -176,9 +176,7 @@ export default { let text = s__('MergeRequests|started a thread'); if (isForCommit) { - text = s__( - 'MergeRequests|started a thread on commit %{linkStart}%{commitId}%{linkEnd}', - ); + text = s__('MergeRequests|started a thread on commit %{linkStart}%{commitId}%{linkEnd}'); } else if (isDiffDiscussion && commitId) { text = isActive ? s__('MergeRequests|started a thread on commit %{linkStart}%{commitId}%{linkEnd}') |