Bug 35769: Remove extra parenthesis

Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
This commit is contained in:
Jonathan Druart 2024-01-24 16:20:50 +01:00 committed by Katrin Fischer
parent 928b606083
commit 07cf21e6b9
Signed by: kfischer
GPG key ID: 0EF6E2C03357A834

View file

@ -1724,11 +1724,11 @@
if ( selected_items.closest('tr').find(".pickup_locations").val() == '' ) {
msg = (_("- Please select a pickup location for the item") + "\n");
msg = _("- Please select a pickup location for the item") + "\n"
}
}
else {
msg = (_("- Please select an item to place a hold") + "\n");
msg = _("- Please select an item to place a hold") + "\n";
}
} else if ( $("#requestgrp").is(":checked") ) {
var selected_group = $('#requestgroup input[type="radio"]:checked');
@ -1742,7 +1742,7 @@
} else {
// Requesting next available
if( $("#pickup-next-avail").length < 1 || $("#pickup-next-avail").val() == "" || $('#pickup-next-avail').val() === null ){
msg = (_("- Please select a pickup location for this hold") + "\n");
msg = _("- Please select a pickup location for this hold") + "\n";
}
}