Skip to content

Commit c6e23ff

Browse files
committed
Fix typo
1 parent d671ec7 commit c6e23ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

django/applications/catmaid/static/js/widgets/coordinates-table.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@
298298
// Click on a row to go to the coordinate
299299
this.datatable.on('click', 'tbody tr', function() {
300300
let row = self.datatable.row(this).data();
301-
project.moveTo(row[self.table.zField + 1], row[self.table.yField + 1], row[self.table.zField + 1]);
301+
project.moveTo(row[self.table.zField + 1], row[self.table.yField + 1], row[self.table.xField + 1]);
302302
})
303303
};
304304

0 commit comments

Comments
 (0)