Skip to content

Commit

Permalink
Fixed incorrect variable incrimination
Browse files Browse the repository at this point in the history
  • Loading branch information
marcus-oscarsson committed Oct 10, 2023
1 parent 02d1137 commit 7d2ee5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/components/SampleView/DrawGridPlugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ export default class DrawGridPlugin {

if (this.gridResultFormat === 'RGB') {
for (let c = 0; c < col; c++) {
for (let r = 0; r < row; c++) {
for (let r = 0; r < row; r++) {
cellResultMatrix.append([0, [0, 0, 0]]);
}
}
Expand Down

0 comments on commit 7d2ee5a

Please sign in to comment.