Skip to content

Commit 9617f60

Browse files
committed
fix: add (optional) text to "Tags" labels
ref issue #3462
1 parent b252f02 commit 9617f60

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/components/AssetsLibrary/AddLink.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ class AddLink extends React.Component {
7777
wrapperClass="form-group"
7878
/>
7979
<div className="form-group">
80-
<label className="tc-label">Tags</label>
80+
<label className="tc-label">Tags (optional)</label>
8181
<TagSelect
8282
useFormsySelect
8383
name="tags"

src/components/FileList/AddFilePermissions.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const AddFilePermission = ({ onCancel, onSubmit, onChange, selectedUsers, select
3737
<div className="dialog-body">
3838
{/* Tags */}
3939
<div styleName="dialog-sub-title">
40-
Tags
40+
Tags (optional)
4141
</div>
4242
<TagSelect
4343
selectedTags={selectedTags}

src/components/FileList/FileListItem.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ export default class FileListItem extends React.Component {
141141
}
142142

143143
{/* Tags */}
144-
<label className="tc-label">Tags</label>
144+
<label className="tc-label">Tags (optional)</label>
145145
<TagSelect
146146
onUpdate={tags => this.onTagsChange(tags)}
147147
selectedTags={tags}

src/components/LinksMenu/EditFileAttachment.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export class EditFileAttachment extends React.Component {
7474
<br />
7575

7676
{/* Tags */}
77-
<label>Tags:</label>
77+
<label>Tags (optional):</label>
7878
<TagSelect
7979
selectedTags={tags}
8080
onUpdate={this.onTagsChange}

src/components/LinksMenu/EditLinkModal.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export class EditLinkModal extends React.Component {
5252
<br />
5353

5454
{/* Tags */}
55-
<label htmlFor="tags">Tags:</label>
55+
<label htmlFor="tags">Tags (optional):</label>
5656
<TagSelect
5757
onUpdate={this.handleTagsChange.bind(this)}
5858
selectedTags={tags}

0 commit comments

Comments
 (0)