Commit fdb9b98c2c77bcea22743850f2230fefa20a0634
1 parent
cf3583d4
Exists in
master
and in
1 other branch
Lighthouse Project ID is now labelled as a number (to assist users who didn't see the Readme)
Showing
1 changed file
with
3 additions
and
2 deletions
Show diff stats
app/models/issue_trackers/lighthouse_tracker.rb
... | ... | @@ -3,13 +3,14 @@ if defined? Lighthouse |
3 | 3 | Label = "lighthouseapp" |
4 | 4 | Fields = [ |
5 | 5 | [:account, { |
6 | - :placeholder => "abc from http://abc.lighthouseapp.com" | |
6 | + :placeholder => "example from http://example.lighthouseapp.com" | |
7 | 7 | }], |
8 | 8 | [:api_token, { |
9 | 9 | :placeholder => "API Token for your account" |
10 | 10 | }], |
11 | 11 | [:project_id, { |
12 | - :placeholder => "Lighthouse project" | |
12 | + :label => "Lighthouse Project ID number", | |
13 | + :placeholder => "#####" | |
13 | 14 | }] |
14 | 15 | ] |
15 | 16 | ... | ... |