Skip to content

Commit

Permalink
fix: replace "oops" with field name 馃檲
Browse files Browse the repository at this point in the history
  • Loading branch information
RomanHotsiy committed May 18, 2018
1 parent ffdb172 commit 6b1e8e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Fields/Field.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@ export class Field extends React.PureComponent<FieldProps> {
onClick={this.toggle}
className={deprecated ? 'deprecated' : ''}
kind={kind}
title="Test"
title={name}
>
<PropertyBullet />
{name}
<ShelfIcon size={'1.2em'} direction={expanded ? 'down' : 'right'} />
{required && <RequiredLabel> required </RequiredLabel>}
</ClickablePropertyNameCell>
) : (
<PropertyNameCell className={deprecated ? 'deprecated' : undefined} kind={kind} title="oops">
<PropertyNameCell className={deprecated ? 'deprecated' : undefined} kind={kind} title={name}>
<PropertyBullet />
{name}
{required && <RequiredLabel> required </RequiredLabel>}
Expand Down

0 comments on commit 6b1e8e7

Please sign in to comment.