Commit fb5271dd authored by Robert Speicher's avatar Robert Speicher

Make the dashboard choice text match the text in the sidebar

parent bf9dd432
......@@ -26,7 +26,7 @@ module PreferencesHelper
orig = User.dashboards.keys
choices = [
['Projects (default)', orig[0]],
['Your Projects (default)', orig[0]],
['Starred Projects', orig[1]]
]
......
......@@ -42,7 +42,7 @@ describe PreferencesHelper do
it 'provides better option descriptions' do
choices = dashboard_choices
expect(choices[0]).to eq ['Projects (default)', 'projects']
expect(choices[0]).to eq ['Your Projects (default)', 'projects']
expect(choices[1]).to eq ['Starred Projects', 'stars']
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