Skip to content

Commit

Permalink
Merge pull request #4159 from lgalis/fix_storage_decorator_percent_st…
Browse files Browse the repository at this point in the history
…ring

Fix Datastore decorator format string
  • Loading branch information
h-kataria committed Jun 18, 2018
2 parents e675d7a + 615df0f commit 2985663
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/decorators/storage_decorator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def quadicon
},
:bottom_right => {
:piechart => percent,
:tooltip => _("%{number}\% Free Space") % {:number => v_free_space_percent_of_total}
:tooltip => _("%{number}") % {:number => v_free_space_percent_of_total} + _("% Free Space")
}
}
end
Expand Down

0 comments on commit 2985663

Please sign in to comment.