Skip to content

Commit

Permalink
Fixed: Uncaught TypeError: Cannot read property 'nodeValue' of undefi…
Browse files Browse the repository at this point in the history
…ned (cvat-ai#1068)
  • Loading branch information
bsekachev authored and nmanovic committed Jan 17, 2020
1 parent 2cc2e32 commit 25164fe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cvat/apps/engine/static/engine/js/shapeCreator.js
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,9 @@ class ShapeCreatorView {
};

let numberOfPoints = 0;
this._drawInstance.attr({
z_order: Number.MAX_SAFE_INTEGER,
});

if (this._polyShapeSize) {
let size = this._polyShapeSize;
Expand Down Expand Up @@ -467,6 +470,7 @@ class ShapeCreatorView {
case 'box':
this._drawInstance = this._frameContent.rect().draw({ snapToGrid: 0.1 }).addClass('shapeCreation').attr({
'stroke-width': STROKE_WIDTH / this._scale,
z_order: Number.MAX_SAFE_INTEGER,
}).on('drawstop', function(e) {
if (this._cancel) return;
if (sizeUI) {
Expand Down Expand Up @@ -545,10 +549,6 @@ class ShapeCreatorView {
default:
throw Error(`Bad type found ${this._type}`);
}

this._drawInstance.attr({
'z_order': Number.MAX_SAFE_INTEGER,
});
}

_rescaleDrawPoints() {
Expand Down

0 comments on commit 25164fe

Please sign in to comment.