diff options
author | Regis <boudinot.regis@yahoo.com> | 2017-01-15 10:07:51 -0500 |
---|---|---|
committer | Regis <boudinot.regis@yahoo.com> | 2017-01-15 10:07:51 -0500 |
commit | f1ca332bd39bca0a1d9ad40e49d282a5222b87b6 (patch) | |
tree | 2fbc06feb4395f391dd525d4cca47dd1833513ac | |
parent | 88c3c8a8150ff0a1acdaf676f07171a50906c2c9 (diff) | |
download | gitlab-ce-f1ca332bd39bca0a1d9ad40e49d282a5222b87b6.tar.gz |
fix UI behaviour
-rw-r--r-- | app/assets/javascripts/vue_pipelines_index/stage.js.es6 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/vue_pipelines_index/stage.js.es6 b/app/assets/javascripts/vue_pipelines_index/stage.js.es6 index f0291ee7826..b6a20dd5994 100644 --- a/app/assets/javascripts/vue_pipelines_index/stage.js.es6 +++ b/app/assets/javascripts/vue_pipelines_index/stage.js.es6 @@ -31,7 +31,7 @@ const areaExpanded = e.currentTarget.attributes['aria-expanded']; - if (areaExpanded && areaExpanded.textContent) { + if (areaExpanded && (areaExpanded.textContent === 'true')) { return setTimeout(() => (this.request = false), 100); } |