summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--lib/axlsx/workbook/worksheet/row.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/axlsx/workbook/worksheet/row.rb b/lib/axlsx/workbook/worksheet/row.rb
index e04784b3..cdfa1a05 100644
--- a/lib/axlsx/workbook/worksheet/row.rb
+++ b/lib/axlsx/workbook/worksheet/row.rb
@@ -79,7 +79,7 @@ module Axlsx
# @return [Cell]
def add_cell(value="", options={})
c = Cell.new(self, value, options)
- worksheet.send(:update_column_info, self.cells, self.cells.map(&:style))
+ worksheet.send(:update_column_info, self.cells, [], self.cells.map(&:style))
c
end