Skip to content
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

Fixed place holder message text in Upgrade package page #9472

Merged
merged 3 commits into from
Nov 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3095,7 +3095,7 @@ button below, and &lt;b&gt;will be unable to log back in&lt;/b&gt;.</source>
</context-group>
</trans-unit>
<trans-unit id="upgradable.jsp.latest" xml:space="preserve">
<source>Latest Package</source>
<source>Package Name</source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/systems/details/packages/UpgradableList</context>
</context-group>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Search input placeholder text change on the Upgrade package page
2 changes: 1 addition & 1 deletion testsuite/features/step_definitions/navigation_steps.rb
Original file line number Diff line number Diff line change
Expand Up @@ -877,7 +877,7 @@
When(/^I enter "([^"]*)" as the filtered latest package$/) do |input|
raise ArgumentError, 'Package name is not set' if input.empty?

find('input[placeholder=\'Filter by Latest Package: \']').set(input)
find('input[placeholder=\'Filter by Package Name: \']').set(input)
end

When(/^I enter "([^"]*)" as the filtered synopsis$/) do |input|
Expand Down
Loading