change default type placeholder from 'text' to type (fix 2394) (#2458)

This commit is contained in:
Anne Ogborn 2019-07-02 18:03:37 +05:30 committed by Rikin Kachhia
parent 9a6e9dfad5
commit 63ad2c4fc5

View File

@ -37,7 +37,7 @@ export const getPlaceholder = type => {
case BOOLEAN:
return '';
default:
return 'text';
return type;
}
};