From: Bill Erickson Date: Mon, 31 Oct 2016 19:31:29 +0000 (-0400) Subject: JBAS-1605 Claims returned dialog label adjustments X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=11f0a857371040344a8e25b34f80a0b80c9b3226;p=working%2FEvergreen.git JBAS-1605 Claims returned dialog label adjustments Change "Use Default Date" to "Use Due Date". Signed-off-by: Bill Erickson --- diff --git a/Open-ILS/xul/staff_client/chrome/content/util/timestamp.js b/Open-ILS/xul/staff_client/chrome/content/util/timestamp.js index 1acd835d00..408f94bd21 100644 --- a/Open-ILS/xul/staff_client/chrome/content/util/timestamp.js +++ b/Open-ILS/xul/staff_client/chrome/content/util/timestamp.js @@ -55,7 +55,7 @@ function timestamp_init() { var newRadio1 = document.createElement("radio"); var newRadio2 = document.createElement("radio"); newGroup.appendChild(newRadio1); - newRadio1.setAttribute('label', "Use Default Date"); + newRadio1.setAttribute('label', "Use Due Date"); newRadio1.setAttribute('id', 'newRadio1'); newGroup.appendChild(newRadio2); newRadio2.setAttribute('label', "Enter a claimed return date");