{cryp.name}
+
+ {skills}
+
{stats}
diff --git a/client/src/components/vbox.component.jsx b/client/src/components/vbox.component.jsx
index 4be9e427..3c5af8cf 100644
--- a/client/src/components/vbox.component.jsx
+++ b/client/src/components/vbox.component.jsx
@@ -88,14 +88,11 @@ function Vbox(args) {
let boundTimer;
function boundTouchStart(e, i) {
- e.preventDefault();
- e.stopPropagation();
+ // e.preventDefault();
+ // e.stopPropagation();
boundTimer = (setTimeout(() => {
- const insert = combiner.findIndex(j => j === null);
- if (insert === -1) return setCombiner([i, null, null]);
- combiner[insert] = i;
boundTimer = null;
- return setCombiner(combiner);
+ return setActiveVar(i);
}, LONG_TOUCH_TIME));
return true;
}
@@ -105,7 +102,12 @@ function Vbox(args) {
clearTimeout(boundTimer);
if (reclaiming && i) sendVboxReclaim(i);
- else if (vbox.bound[i]) setActiveVar(i);
+ else if (vbox.bound[i]) {
+ const insert = combiner.findIndex(j => j === null);
+ if (insert === -1) return setCombiner([i, null, null]);
+ combiner[insert] = i;
+ return setCombiner(combiner);
+ }
}
return true;
}