diff options
author | Jarka Kadlecova <jarka@gitlab.com> | 2017-07-26 09:57:56 +0200 |
---|---|---|
committer | Jarka Kadlecova <jarka@gitlab.com> | 2017-07-27 07:51:36 +0200 |
commit | aa2b3ff1e4c8bb725a96ed55906d142300ccf017 (patch) | |
tree | 5e834e50277c1c12a18e5dd1523eb8d93259d4de /app/assets/javascripts/integrations | |
parent | f2da36f19661353cd1bd6788fbdf1a65e2d70f8d (diff) | |
download | gitlab-ce-aa2b3ff1e4c8bb725a96ed55906d142300ccf017.tar.gz |
Display specific error message when JIRA test fails32483-jira-error
Diffstat (limited to 'app/assets/javascripts/integrations')
-rw-r--r-- | app/assets/javascripts/integrations/integration_settings_form.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/integrations/integration_settings_form.js b/app/assets/javascripts/integrations/integration_settings_form.js index ddd3a6aab99..cf1e6a14725 100644 --- a/app/assets/javascripts/integrations/integration_settings_form.js +++ b/app/assets/javascripts/integrations/integration_settings_form.js @@ -102,7 +102,7 @@ export default class IntegrationSettingsForm { }) .done((res) => { if (res.error) { - new Flash(res.message, null, null, { + new Flash(`${res.message} ${res.service_response}`, null, null, { title: 'Save anyway', clickHandler: (e) => { e.preventDefault(); |