Commit e69e1c920b263f61959f335541891fd67161bfb1
1 parent
fdb9b98c
Exists in
master
and in
1 other branch
HTML Placeholders should be examples of input
Showing
1 changed file
with
6 additions
and
4 deletions
Show diff stats
app/models/issue_trackers/lighthouse_tracker.rb
... | ... | @@ -3,14 +3,16 @@ if defined? Lighthouse |
3 | 3 | Label = "lighthouseapp" |
4 | 4 | Fields = [ |
5 | 5 | [:account, { |
6 | - :placeholder => "example from http://example.lighthouseapp.com" | |
6 | + :label => "Account (subdomain)", | |
7 | + :placeholder => "example if http://example.lighthouseapp.com" | |
7 | 8 | }], |
8 | 9 | [:api_token, { |
9 | - :placeholder => "API Token for your account" | |
10 | + :label => "API Token", | |
11 | + :placeholder => "1aa1111a111111aaaa11a11a1111a11a11111a11" | |
10 | 12 | }], |
11 | 13 | [:project_id, { |
12 | - :label => "Lighthouse Project ID number", | |
13 | - :placeholder => "#####" | |
14 | + :label => "Project ID number", | |
15 | + :placeholder => "123456" | |
14 | 16 | }] |
15 | 17 | ] |
16 | 18 | ... | ... |