From 57f0fdf18562ac45f47f9e7bd850ecb645d4fab5 Mon Sep 17 00:00:00 2001 From: Filipa Lacerda Date: Tue, 16 May 2017 11:51:54 +0100 Subject: Fix empty state validation --- app/assets/javascripts/pipelines/pipelines.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/javascripts/pipelines/pipelines.js b/app/assets/javascripts/pipelines/pipelines.js index b07616ac10f..d6952d1ee5f 100644 --- a/app/assets/javascripts/pipelines/pipelines.js +++ b/app/assets/javascripts/pipelines/pipelines.js @@ -79,7 +79,7 @@ export default { shouldRenderEmptyState() { return !this.isLoading && !this.hasError && - !this.hasMadeRequest && + this.hasMadeRequest && !this.state.pipelines.length && (this.scope === 'all' || this.scope === null); }, -- cgit v1.2.1