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 fa0c0263 Show age of withdrawal request
fa0c0263 is described below
commit fa0c0263a6ddc65c24120d3deb470a9592c7a60a
Author: Sebb <[email protected]>
AuthorDate: Thu Sep 12 21:37:30 2024 +0100
Show age of withdrawal request
---
www/roster/views/person/forms.js.rb | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/www/roster/views/person/forms.js.rb
b/www/roster/views/person/forms.js.rb
index 482856eb..a0ad411d 100644
--- a/www/roster/views/person/forms.js.rb
+++ b/www/roster/views/person/forms.js.rb
@@ -35,6 +35,12 @@ class PersonForms < Vue
_ ' Days since submission: '
_ emeritus_request_age
end
+ elsif form == 'withdrawal_request'
+ withdrawal_request_age = committer['withdrawal_request_age']
+ if withdrawal_request_age
+ _ ' Days since submission: '
+ _ withdrawal_request_age
+ end
end
end
end