Skip to content

Commit

Permalink
Merge pull request #9110 from jaywcarman/display_os_name
Browse files Browse the repository at this point in the history
Display OS 'name' as 'Description'
  • Loading branch information
agrare authored Apr 19, 2024
2 parents cdfcfc5 + e74188c commit 177d819
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/helpers/textual_mixins/textual_os_info.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 177d819

Please sign in to comment.