Skip to content

Commit

Permalink
Code optimization
Browse files Browse the repository at this point in the history
  • Loading branch information
OdranHUSSON committed Feb 10, 2019
1 parent b9d94f5 commit f79ea37
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions resources/views/tasks.blade.php
Expand Up @@ -19,10 +19,10 @@
<div class="col s12">
<ul class="collection with-header">
<li class="collection-header">Tasks</li>
<li v-if="errored">
<p>We're sorry, we're not able to retrieve this information at the moment, please try back later</p>
<li v-if="errored" class="collection-item">
<p>We're sorry, we're not able to retrieve tasks</p>
</li>
<li v-if="loading">Loading...</li>
<li v-if="loading" class="collection-item">Loading...</li>
<li v-else v-for="task in tasks" class="collection-item">@{{ task.name }}</li>
</ul>
</div>
Expand Down

0 comments on commit f79ea37

Please sign in to comment.