Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
MDeLuise authored and Coduz committed Nov 7, 2022
1 parent 6048f47 commit 910f01d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Expand Up @@ -164,7 +164,7 @@ public Object render(GwtAccount gwtAccount, String property, ColumnData config,
column.setSortable(false);
configs.add(column);

column = new ColumnConfig("adress1", 120);
column = new ColumnConfig("address1", 120);
column.setHidden(true);
column.setHeader(ACCOUNT_MSGS.accountTableAddress1());
column.setWidth(150);
Expand Down
Expand Up @@ -161,11 +161,11 @@ public void setPhoneNumber(String phoneNumber) {
}

public String getAddress1() {
return (String) getUnescaped("adress1");
return (String) getUnescaped("address1");
}

public void setAddress1(String adress1) {
set("adress1", adress1);
public void setAddress1(String address1) {
set("address1", address1);
}

public String getAddress2() {
Expand Down

0 comments on commit 910f01d

Please sign in to comment.