Skip to content

Commit

Permalink
Merge pull request #107 from martinRenou/fix_cell_type_issue
Browse files Browse the repository at this point in the history
Fix cell metadata initialization for None cells
  • Loading branch information
martinRenou committed Apr 10, 2019
2 parents c83b8b3 + f942c3c commit 4ecb3d3
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions js/src/sheet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,6 @@ let SheetModel = widgets.DOMWidgetModel.extend({
},
_cell_data_to_grid: function(cell) {
let value = cell.get('value');
if((value === null) || (value === undefined)) {
return;
}
for(let i = cell.get('row_start'); i <= cell.get('row_end'); i++) {
for(let j = cell.get('column_start'); j <= cell.get('column_end'); j++) {
let value = cell.get('value');
Expand Down

0 comments on commit 4ecb3d3

Please sign in to comment.