Skip to content

Commit

Permalink
feat: improve commit tooltips
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswhong committed Sep 21, 2020
1 parent b6807bc commit 49daa7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/components/workbench/components/CommitEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export const CommitEditorComponent: React.FunctionComponent<CommitEditorProps> =
<TextInput
name='title'
label='Title'
labelTooltip='Briefly describe these changes'
labelTooltip='Briefly describe the changes being made in this commit'
type='text'
value={title}
placeHolder='Add a title'
Expand All @@ -94,7 +94,7 @@ export const CommitEditorComponent: React.FunctionComponent<CommitEditorProps> =
<TextAreaInput
name='message'
label='Message'
labelTooltip={'A detailed summary of the dataset\'s contents'}
labelTooltip={'Provide a detailed description of the<br/>changes being made in this commit (optional)'}
value={message}
placeHolder='Add a title'
onChange={handleChange}
Expand Down

0 comments on commit 49daa7d

Please sign in to comment.