Added hints under the tags field for which delimeters will be used #20

Merged
carltibule merged 1 commits from feature/AddSearchableDropdown into master 2023-03-02 23:58:55 -06:00
Showing only changes of commit 478b00e3e2 - Show all commits

View File

@ -106,7 +106,7 @@ export function BookmarkDetailView() {
enableReinitialize: true, enableReinitialize: true,
onSubmit: async(values) => { onSubmit: async(values) => {
const isUpdate = values.id > 0 const isUpdate = values.id > 0
values.tags = values.tags ? values.tags.split(", ") : null; values.tags = values.tags ? values.tags.toLowerCase().split(/[\s,]+/) : null;
dispatchAlertMessageState({ type: "CLOSE_ALERT"}); dispatchAlertMessageState({ type: "CLOSE_ALERT"});
dispatchSplashScreenState({type: "SHOW_SPLASH_SCREEN", message: isUpdate ? "Updating Bookmark entry" : "Creating new Bookmark"}); dispatchSplashScreenState({type: "SHOW_SPLASH_SCREEN", message: isUpdate ? "Updating Bookmark entry" : "Creating new Bookmark"});
const accessToken = await getAccessTokenSilently(); const accessToken = await getAccessTokenSilently();
@ -210,6 +210,9 @@ export function BookmarkDetailView() {
defaultValue={formik.values.tags} defaultValue={formik.values.tags}
onChange={formik.handleChange} onChange={formik.handleChange}
/> />
<Form.Text muted>
Tags will be separated by commas or spaces
</Form.Text>
</Form.Group> </Form.Group>
<Form.Group className="mb-3"> <Form.Group className="mb-3">
<Form.Label>Title:</Form.Label> <Form.Label>Title:</Form.Label>
@ -220,7 +223,7 @@ export function BookmarkDetailView() {
defaultValue={formik.values.title} defaultValue={formik.values.title}
onChange={formik.handleChange} onChange={formik.handleChange}
/> />
<Form.Text className="text-muted"> <Form.Text muted>
When left blank, we'll use the URL's Title When left blank, we'll use the URL's Title
</Form.Text> </Form.Text>
</Form.Group> </Form.Group>