diff options
| author | Johnny Shields <[email protected]> | 2023-04-13 00:06:56 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-04-13 00:06:56 +0900 |
| commit | 63b7e742e4146c1d174413ff2e44d3b6c20b83cf (patch) | |
| tree | c3c811b0153135fa4c3e25e19dfb0f58f1ad5ab7 | |
| parent | 5f4cf9a12235697b21e666927ed7d08ef18bf15b (diff) | |
| download | caxlsx-63b7e742e4146c1d174413ff2e44d3b6c20b83cf.tar.gz caxlsx-63b7e742e4146c1d174413ff2e44d3b6c20b83cf.zip | |
Update row.rb
| -rw-r--r-- | lib/axlsx/workbook/worksheet/row.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/axlsx/workbook/worksheet/row.rb b/lib/axlsx/workbook/worksheet/row.rb index d8c73060..119cd10b 100644 --- a/lib/axlsx/workbook/worksheet/row.rb +++ b/lib/axlsx/workbook/worksheet/row.rb @@ -122,7 +122,7 @@ module Axlsx # values starting with an equals sign as formulas or as literal strings. # @param [Array, Boolean] value The value to set. def escape_formulas=(value) - each_with_index do | cell, index | + each_with_index do |cell, index| cell.escape_formulas = value.is_a?(Array) ? value[index] : value end end |
