Skip to content

Commit

Permalink
pos_partner_firstname: fix string
Browse files Browse the repository at this point in the history
  • Loading branch information
alexis-via committed Nov 3, 2023
1 parent 2daabd6 commit a932140
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pos_partner_firstname/static/src/js/PartnerDetailsEdit.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ odoo.define("pos_partner_firstname.PartnerDetailsEdit", function (require) {
processedChanges.lastname === ""
) {
return this.showPopup("ErrorPopup", {
title: _t("Both Customer First and Last Name Are Required"),
title: _t("Both customer first name and last name are required."),
});
}
if (
Expand Down
4 changes: 2 additions & 2 deletions pos_partner_firstname/static/src/xml/pos.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
name="lastname"
t-on-change="captureChange"
t-att-value="props.partner.lastname || ''"
placeholder="LastName"
placeholder="Last Name"
/>
</div>
</div>
Expand All @@ -45,7 +45,7 @@
name="firstname"
t-on-change="captureChange"
t-att-value="props.partner.firstname || ''"
placeholder="FirstName"
placeholder="First Name"
/>
</div>
</div>
Expand Down

0 comments on commit a932140

Please sign in to comment.