Skip to content

Commit

Permalink
Merge pull request #143 from OpenSRP/142-clear-age-text
Browse files Browse the repository at this point in the history
142 clear age text
  • Loading branch information
rkodev authored Feb 19, 2019
2 parents 826bec3 + 65ff0d4 commit 394ee87
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1722,6 +1722,9 @@ private void refreshViews(View childElement) {
} else if (child instanceof MaterialSpinner) {
MaterialSpinner spinner = (MaterialSpinner) child;
spinner.setSelected(false);
} else if(child instanceof TextView && child.getId() == R.id.duration){
// clear duration for custom date picker
((TextView) child).setText("");
}
refreshViews(group.getChildAt(id));
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION_NAME=1.4.8-SNAPSHOT
VERSION_NAME=1.4.9-SNAPSHOT
VERSION_CODE=1
GROUP=org.smartregister
POM_SETTING_DESCRIPTION=OpenSRP Client Native Form Json Wizard
Expand Down

0 comments on commit 394ee87

Please sign in to comment.