mirror of
https://github.com/Joxit/docker-registry-ui.git
synced 2025-04-27 15:39:54 +03:00
fix: hide empty repositories when SHOW_CATALOG_NB_TAGS
is active (#299)
fixes #299
This commit is contained in:
parent
43a242312c
commit
b0811086fd
1 changed files with 6 additions and 1 deletions
|
@ -20,7 +20,12 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||
class="content"
|
||||
if="{!props.filterResults || state.nImages > 0 || matchSearch(props.filterResults, state.image)}"
|
||||
>
|
||||
<material-card class="list highlight" expanded="{state.expanded}" onclick="{ onClick }">
|
||||
<material-card
|
||||
class="list highlight"
|
||||
expanded="{state.expanded}"
|
||||
onclick="{ onClick }"
|
||||
if="{ !props.showCatalogNbTags || state.nbTags !== 0 }"
|
||||
>
|
||||
<a if="{ state.image }" href="{ router.taglist(state.image) }">
|
||||
<material-waves center="true" color="#ddd"></material-waves>
|
||||
</a>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue