diff --git a/app/models/repository_text_value.rb b/app/models/repository_text_value.rb index 4b12da3fd..529f89c79 100644 --- a/app/models/repository_text_value.rb +++ b/app/models/repository_text_value.rb @@ -61,7 +61,7 @@ class RepositoryTextValue < ApplicationRecord def self.import_from_text(text, attributes, _options = {}) return nil if text.blank? - new(attributes.merge(data: text.truncate(Constants::TEXT_MAX_LENGTH))) + new(attributes.merge(data: text)) end alias export_formatted formatted