diff --git a/app/helpers/textual_mixins/textual_os_info.rb b/app/helpers/textual_mixins/textual_os_info.rb index 8c01bcbe0fe..49ad7c03f14 100644 --- a/app/helpers/textual_mixins/textual_os_info.rb +++ b/app/helpers/textual_mixins/textual_os_info.rb @@ -28,7 +28,7 @@ def os_info_attributes if @record.operating_system.present? os_info = {:product_name => _("Operating System"), :service_pack => _("Service Pack"), :productid => _("Product ID"), :version => _("Version"), :build_number => _("Build Number"), - :bitness => _("System Type")}.map do |method, title| + :bitness => _("System Type"), :name => _("Description")}.map do |method, title| value = @record.operating_system.send(method) value ? OsInfo.new(title, value) : next end