[mobile] Fix bug 45066

This commit is contained in:
JuliaSvinareva 2020-04-16 21:12:06 +03:00
parent 273c1be30d
commit 841fd8df02
3 changed files with 3 additions and 3 deletions

View file

@ -77,7 +77,7 @@ define([
}, },
showMenu: function (items, posX, posY) { showMenu: function (items, posX, posY) {
if (items.length < 1) { if (items.itemsIcon.length < 1 && items.items.length < 1) {
return; return;
} }

View file

@ -76,7 +76,7 @@ define([
}, },
showMenu: function (items, posX, posY) { showMenu: function (items, posX, posY) {
if (items.length < 1) { if (items.itemsIcon.length < 1 && items.items.length < 1) {
return; return;
} }

View file

@ -78,7 +78,7 @@ define([
}, },
showMenu: function (items, posX, posY) { showMenu: function (items, posX, posY) {
if (items.length < 1) { if (items.itemsIcon.length < 1 && items.items.length < 1) {
return; return;
} }