mirror of
https://github.com/tdurieux/anonymous_github.git
synced 2026-02-12 18:32:44 +00:00
feat: display message when repository list is empty
This commit is contained in:
@@ -260,9 +260,9 @@
|
||||
</li>
|
||||
<li
|
||||
class="col-12 d-flex px-0 py-3 border-bottom color-border-secondary"
|
||||
ng-if="conference.repositories.length == 0"
|
||||
ng-if="conference.filteredRepositories.length == 0"
|
||||
>
|
||||
There is no repository for this conference.
|
||||
There is no repository to display.
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -217,8 +217,8 @@
|
||||
</div>
|
||||
</li>
|
||||
<li class="col-12 d-flex px-0 py-3 border-bottom color-border-secondary" ng-if="conferences.length == 0">
|
||||
You have no conference. You a create a
|
||||
<a href="/conference/new">new one</a>.
|
||||
You have no conference. You a create a
|
||||
<a href="/conference/new"> new one</a>.
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -321,6 +321,12 @@
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li
|
||||
class="col-12 d-flex px-0 py-3 border-bottom color-border-secondary"
|
||||
ng-if="filteredRepositories.length == 0"
|
||||
>
|
||||
There is no repository to display.
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user