I've used createChipKeys prop to make both Enter and comma key to create chips.
Both are working on windows and Linux OS but not in Android device. Enter key is creating chips on Android but not comma key.
I've add these ASCII keys. Please suggest, if i'm wrong.
<Chips
placeholder={t("DOMAIN_NAME")}
variant="outlined"
onChange={handleChange}
value={selectedUser}
createChipKeys={[13, 188]}
/>
I've used createChipKeys prop to make both Enter and comma key to create chips.
Both are working on windows and Linux OS but not in Android device. Enter key is creating chips on Android but not comma key.
I've add these ASCII keys. Please suggest, if i'm wrong.
<Chips
placeholder={t("DOMAIN_NAME")}
variant="outlined"
onChange={handleChange}
value={selectedUser}
createChipKeys={[13, 188]}
/>