0
1
Fork 0

Merge pull request 'refs #8480 Hide inactive items' (!101) from test into dev

Reviewed-on: verdnatura/hedera-web#101
This commit is contained in:
Juan Ferrer 2025-01-27 11:41:26 +00:00
commit a956c268b6
3 changed files with 4 additions and 4 deletions

2
debian/changelog vendored
View File

@ -1,4 +1,4 @@
hedera-web (25.4.3) stable; urgency=low
hedera-web (25.4.4) stable; urgency=low
* Initial Release.

View File

@ -18,8 +18,8 @@
LEFT JOIN image im
ON im.collectionFk = 'catalog'
AND im.name = i.image
WHERE i.longName LIKE CONCAT('%', #search, '%')
OR i.id = #search
WHERE i.isActive
AND (i.longName LIKE CONCAT('%', #search, '%') OR i.id = #search)
ORDER BY i.longName LIMIT 50
</db-model>
<custom>

View File

@ -1,6 +1,6 @@
{
"name": "hedera-web",
"version": "25.4.3",
"version": "25.4.4",
"description": "Verdnatura web page",
"license": "GPL-3.0",
"repository": {