fix: [AttackMatrix] Stopped comparing string with integer

pull/4033/head
mokaddem 2019-01-18 15:24:53 +01:00
parent 9357674c1f
commit a18c5d6e4e
1 changed files with 1 additions and 0 deletions

View File

@ -275,6 +275,7 @@
function pickCell(cell, clusterId, recurseChosen) {
recurseChosen = recurseChosen === undefined ? true : recurseChosen;
clusterId = parseInt(clusterId);
var $cells = $('td[data-cluster-id="' + clusterId + '"]');
if (!cell.hasClass('cell-picked')) {