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