-
Notifications
You must be signed in to change notification settings - Fork 356
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Datastore selection flash message fix #559
Conversation
@h-kataria Please review. |
@@ -32,7 +32,7 @@ def storage_list | |||
def miq_search_node | |||
options = {:model => "Storage"} | |||
process_show_list(options) | |||
@right_cell_text = _("All %{title} Datastores") % {:title => ui_lookup(:ui_title => "datastore")} | |||
@right_cell_text = _("All Datastores") % {:title => ui_lookup(:ui_title => "datastore")} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@GregP remove setting of :title it is not being used.
the change should be
@right_cell_text = _("All Datastores")
or
@right_cell_text = _("All %{title}") % {:title => ui_lookup(:models => 'datastore'}
Corrected flash message text when selecting datastore filter for display https://bugzilla.redhat.com/show_bug.cgi?id=1398744
5642947
to
7caa244
Compare
@h-kataria Please review. |
Checked commit GregP@7caa244 with ruby 2.2.6, rubocop 0.47.1, and haml-lint 0.20.0 |
looks good |
Euwe backport (to manageiq repo) details:
|
Corrected flash message text when selecting datastore filter for display
https://bugzilla.redhat.com/show_bug.cgi?id=1398744
Screen shots before and after attached below:
Before:
After: