renew-token-check #98

Merged
jsegarra merged 8 commits from wbuezas/hedera-web-mindshore:renew-token-check into beta 2025-01-17 23:13:21 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 85296109ca - Show all commits

View File

@ -23,7 +23,7 @@ const query = `SELECT i.id, i.longName, i.size, i.category,
ON im.collectionFk = 'catalog'
AND im.name = i.image
WHERE (i.longName LIKE CONCAT('%', #search, '%')
OR i.id = #search) AND i.isActive = 1
OR i.id = #search) AND i.isActive
ORDER BY i.longName LIMIT 50`;
const onSearch = data => (items.value = data || []);