Make the dashboard choice text match the text in the sidebar

cherry-picked
This commit is contained in:
Robert Speicher
2015-06-16 12:52:08 -04:00
parent 8dfe01cbb0
commit f22d80ad75
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -6,8 +6,8 @@ module PreferencesHelper
orig = User.dashboards.keys
choices = [
['Projects (default)', orig[0]],
['Starred Projects', orig[1]]
['Your Projects (default)', orig[0]],
['Starred Projects', orig[1]]
]
if orig.size != choices.size
+2 -2
View File
@@ -13,8 +13,8 @@ describe PreferencesHelper do
it 'provides better option descriptions' do
choices = dashboard_choices
expect(choices[0]).to eq ['Projects (default)', 'projects']
expect(choices[1]).to eq ['Starred Projects', 'stars']
expect(choices[0]).to eq ['Your Projects (default)', 'projects']
expect(choices[1]).to eq ['Starred Projects', 'stars']
end
end
end