Skip to content

Commit

Permalink
Ajustado método slice do Matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamJardim committed Dec 17, 2024
1 parent 06b8b73 commit 89e6f44
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Matrix.js
Original file line number Diff line number Diff line change
Expand Up @@ -680,6 +680,12 @@ window.Vectorization.Matrix = function( config, classConfig={} ){
dadosRecortados.push( context.getLinha(i).raw() );
}

if( context.flexibilidade ){
return Vectorization.Matrix(dadosRecortados, {
flexibilidade: context.flexibilidade || []
});
}

return Vectorization.Matrix(dadosRecortados);
}

Expand Down

0 comments on commit 89e6f44

Please sign in to comment.