Merge pull request 'refs #8480 Hide inactive items' (!101) from test into dev
gitea/hedera-web/pipeline/head This commit looks good
Details
gitea/hedera-web/pipeline/head This commit looks good
Details
Reviewed-on: #101
This commit is contained in:
commit
a956c268b6
|
@ -1,4 +1,4 @@
|
||||||
hedera-web (25.4.3) stable; urgency=low
|
hedera-web (25.4.4) stable; urgency=low
|
||||||
|
|
||||||
* Initial Release.
|
* Initial Release.
|
||||||
|
|
||||||
|
|
|
@ -18,8 +18,8 @@
|
||||||
LEFT JOIN image im
|
LEFT JOIN image im
|
||||||
ON im.collectionFk = 'catalog'
|
ON im.collectionFk = 'catalog'
|
||||||
AND im.name = i.image
|
AND im.name = i.image
|
||||||
WHERE i.longName LIKE CONCAT('%', #search, '%')
|
WHERE i.isActive
|
||||||
OR i.id = #search
|
AND (i.longName LIKE CONCAT('%', #search, '%') OR i.id = #search)
|
||||||
ORDER BY i.longName LIMIT 50
|
ORDER BY i.longName LIMIT 50
|
||||||
</db-model>
|
</db-model>
|
||||||
<custom>
|
<custom>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "hedera-web",
|
"name": "hedera-web",
|
||||||
"version": "25.4.3",
|
"version": "25.4.4",
|
||||||
"description": "Verdnatura web page",
|
"description": "Verdnatura web page",
|
||||||
"license": "GPL-3.0",
|
"license": "GPL-3.0",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|
Loading…
Reference in New Issue