Skip to content

Commit 0a451ac

Browse files
authored
Updating copy on AddLink.jsx
Changed titles for "Add Link" fields
1 parent bf407da commit 0a451ac

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/components/LinksMenu/AddLink.jsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,19 +33,19 @@ class AddLink extends React.Component {
3333
<Modal.Body>
3434
<Formsy.Form onValidSubmit={onAdd} onValid={this.enableSubmitBtn} onInvalid={this.disableSubmitBtn}>
3535
<TCFormFields.TextInput
36-
name="title"
37-
label="Title"
36+
name="name"
37+
label="Name"
3838
type="text"
3939
validations="isRequired"
40-
validationError="Title is required"
40+
validationError="Name is required"
4141
maxLength={250}
4242
wrapperClass="form-group"
4343
/>
4444
<TCFormFields.TextInput
45-
name="address"
46-
label="Address"
45+
name="url"
46+
label="URL"
4747
type="text"
48-
validationError="This is a required field."
48+
validationError="URL is required."
4949
validations={{
5050
isRelaxedUrl: true,
5151
isRequired: true

0 commit comments

Comments
 (0)