Skip to content

Commit

Permalink
do now show "no resources found" when loading resources
Browse files Browse the repository at this point in the history
  • Loading branch information
romangithub1024 committed Mar 2, 2018
1 parent f3b3ca2 commit 73dc72f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webui/src/pages/components/Resources.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<div v-if="error">
<span class="label label-danger center">Error</span> <i class="text-red">{{ error }}</i>
</div>
<div v-if="resources == null || Object.keys(resources).length <= 0">
<div v-if="!loading && !error && (resources == null || Object.keys(resources).length <= 0)">
No Resources Found
</div>

Expand Down

0 comments on commit 73dc72f

Please sign in to comment.