Catalog filter fixes
gitea/hedera-web/pipeline/head This commit looks good Details

This commit is contained in:
Juan Ferrer 2022-05-28 21:31:43 +02:00
parent 3de2c2f9fe
commit 894ff77877
3 changed files with 4 additions and 3 deletions

2
debian/changelog vendored
View File

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

View File

@ -24,13 +24,14 @@ Hedera.Catalog = new Class({
,activate: function() { ,activate: function() {
document.body.appendChild(this.$.rightPanel); document.body.appendChild(this.$.rightPanel);
this.$.items.setInfo('i', 'item', 'vn', ['id']); this.$.items.setInfo('i', 'item', 'vn', ['id']);
if (localStorage.getItem('hederaView')) if (localStorage.getItem('hederaView'))
this.setView(parseInt(localStorage.getItem('hederaView'))); this.setView(parseInt(localStorage.getItem('hederaView')));
else else
this.setView(Hedera.Catalog.View.GRID); this.setView(Hedera.Catalog.View.GRID);
this.onRealmChange();
} }
,deactivate: function() { ,deactivate: function() {

View File

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