This is an automated email from the ASF dual-hosted git repository.
sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git
The following commit(s) were added to refs/heads/master by this push:
new 2d24b742 GH id might not be canonical
2d24b742 is described below
commit 2d24b74282e7476fbd6595e72ac18d81adc677c5
Author: Sebb <[email protected]>
AuthorDate: Tue Sep 19 17:01:13 2023 +0100
GH id might not be canonical
---
www/roster/views/person/github.js.rb | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/www/roster/views/person/github.js.rb
b/www/roster/views/person/github.js.rb
index cd1b42e3..7f99b80d 100644
--- a/www/roster/views/person/github.js.rb
+++ b/www/roster/views/person/github.js.rb
@@ -7,7 +7,11 @@ class PersonGitHub < Vue
committer = @@person.state.committer
_div.row data_edit: 'github' do
- _div.name 'GitHub username'
+ _div.name do
+ _ 'GitHub username(s) (user-provided)'
+ _br
+ _a 'Link GitHub username to ASF id', href:
'https://gitbox.apache.org/boxer/'
+ end
_div.value do
@@ -45,6 +49,7 @@ class PersonGitHub < Vue
end
end
end
+ _ '(might not be linked to ASF id)'
end
end
end