Commit a9cfa6c5 authored by Aaron Snyder's avatar Aaron Snyder

Fix grammar in admin area labels .nothing-here-block when no labels exist.

updating admin area > "Labels" text to "There are no labels yet.", per Stan Hus suggestion.
parent b6233917
...@@ -12,6 +12,7 @@ v 8.1.0 (unreleased) ...@@ -12,6 +12,7 @@ v 8.1.0 (unreleased)
- Show CI status on Your projects page and Starred projects page - Show CI status on Your projects page and Starred projects page
- Remove "Continuous Integration" page from dashboard - Remove "Continuous Integration" page from dashboard
- Add notes and SSL verification entries to hook APIs (Ben Boeckel) - Add notes and SSL verification entries to hook APIs (Ben Boeckel)
- Fix grammar in admin area "labels" .nothing-here-block when no labels exist.
v 8.0.2 (unreleased) v 8.0.2 (unreleased)
- Fix default avatar not rendering in network graph (Stan Hu) - Fix default avatar not rendering in network graph (Stan Hu)
......
...@@ -12,5 +12,5 @@ ...@@ -12,5 +12,5 @@
= paginate @labels, theme: 'gitlab' = paginate @labels, theme: 'gitlab'
- else - else
.light-well .light-well
.nothing-here-block There are no any labels yet .nothing-here-block There are no labels yet
\ No newline at end of file
...@@ -38,7 +38,7 @@ class Spinach::Features::AdminIssuesLabels < Spinach::FeatureSteps ...@@ -38,7 +38,7 @@ class Spinach::Features::AdminIssuesLabels < Spinach::FeatureSteps
step 'I should see labels help message' do step 'I should see labels help message' do
page.within '.labels' do page.within '.labels' do
expect(page).to have_content 'There are no any labels yet' expect(page).to have_content 'There are no labels yet'
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment