1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00

fix(dashboard): do not show globally hidden feed entries

This commit is contained in:
2024-03-17 21:39:59 +01:00
parent cad3d7ecd5
commit e4be74ca87

View File

@@ -193,7 +193,7 @@
| ${jq}/bin/jq -r '
.total as $total | (
.entries
| map("\(.feed.category.title) \u001b[32m\(.author)\u001b[0m \(.title)")
| map(select(.feed | .hide_globally| not) | "\(.feed.category.title) \u001b[32m\(.author)\u001b[0m \(.title)")
| join("\n")
)'
'';