Browse Source

from/to bugfix

pull/25/head
Alexey Velikiy 3 years ago
parent
commit
f132525d45
  1. 2
      client/src/components/hastic_pod/index.ts

2
client/src/components/hastic_pod/index.ts

@ -118,7 +118,7 @@ export class HasticPod extends LinePod {
from = Math.floor(from);
to = Math.ceil(to);
if (from < to) {
if (from > to) {
const t = from;
from = to;
to = t;

Loading…
Cancel
Save