Skip to content

Commit

Permalink
added tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
vitPinchuk committed May 10, 2024
1 parent 7fe5167 commit 63b8e4a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/components/ConfigEditor/ConfigEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,13 @@ export class ConfigEditor extends PureComponent<Props, object> {

return (
<InlineFieldRow>
<InlineField label="Feed URL" labelWidth={14} grow invalid={jsonData.feed === ''}>
<InlineField
label="Feed URL"
labelWidth={14}
grow
invalid={jsonData.feed === ''}
tooltip={`The URL must be correct and contain all necessary characters ('/' at the end, etc.)`}
>
<Input
type="text"
value={jsonData.feed}
Expand Down

0 comments on commit 63b8e4a

Please sign in to comment.