Fix visual glitch

This commit is contained in:
Skylar Ittner 2021-10-19 22:02:59 -06:00
parent 09827c99ae
commit 90867a96b3
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ function requestPickup() {
app.dialog.alert("We need an address to get the packages from. Don't have one? Find your location on fixphrase.com and use that.", "Whoops!");
return;
}
if ($("#pickupRequestForm #packagelocation").val() == "" && $("#pickupRequestForm #instructions").val() == "") {
if (($("#pickupRequestForm #packagelocation").val() == "" || $("#pickupRequestForm #packagelocation").val() == "OTHER") && $("#pickupRequestForm #instructions").val() == "") {
app.dialog.alert("Give us some instructions so we know how to find your packages.", "Whoops!");
return;
}

View File

@ -75,7 +75,7 @@
<option>Office</option>
<option>Reception</option>
<option>I'm home all day, knock on the door</option>
<option value="">Other (add instructions)</option>
<option value="OTHER">Other (add instructions)</option>
</select>
</div>
</div>