diff options
| -rw-r--r-- | lib/axlsx/workbook/worksheet/cell.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/axlsx/workbook/worksheet/cell.rb b/lib/axlsx/workbook/worksheet/cell.rb index 80f938d4..fe95e529 100644 --- a/lib/axlsx/workbook/worksheet/cell.rb +++ b/lib/axlsx/workbook/worksheet/cell.rb @@ -67,7 +67,7 @@ module Axlsx # Indicates if the cell is good for shared string table def plain_string? @type == :string && # String typed - !@is_text_run && # No inline styles + !is_text_run? && # No inline styles [email protected]? && # Not nil [email protected]? && # Not empty [email protected]_with?('=') # Not a formula |
