From 8d022fcaa5ac2fb5ab3e6754d6fe3ea46bdcb7f4 Mon Sep 17 00:00:00 2001 From: Terran McCanna <tmccanna@georgialibraries.org> Date: Tue, 22 Oct 2019 09:37:59 -0400 Subject: [PATCH] LP#1839359 Select element on login not accessible This adds id and name to the select element on the staff client login page to make it accessible. Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org> Signed-off-by: Jane Sandberg <sandbej@linnbenton.edu> --- Open-ILS/src/templates/staff/t_login.tt2 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Open-ILS/src/templates/staff/t_login.tt2 b/Open-ILS/src/templates/staff/t_login.tt2 index 0f58cea8e9..640e6c51f2 100644 --- a/Open-ILS/src/templates/staff/t_login.tt2 +++ b/Open-ILS/src/templates/staff/t_login.tt2 @@ -34,7 +34,8 @@ for="login-workstation">[% l('Workstation') %]</label> <div class="col-md-8"> <select class="form-control" ng-model="args.workstation" - ng-options="ws for ws in workstations"> + ng-options="ws for ws in workstations" + id="login-workstation" name="select"> <option>[% l('Select Workstation') %]</option> </select> </div> -- 2.11.0