Skip to content

Commit

Permalink
v0.4.0 -> v0.5.0 (#105)
Browse files Browse the repository at this point in the history
* feat #99 - Avatar component (#103)
* feat #100 - Notification component should take in configuration options (#103)
* feat #101 - Icon component should render svgs (#103)
* feat #92 - Theming (#97)
* fix #104 - Fix exported types for table and form (#97)
  • Loading branch information
nancy-dassana authored and github-actions committed Oct 16, 2020
1 parent a780a19 commit bc334a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/__snapshots__/storybook.test.ts.snap
Expand Up @@ -283,7 +283,7 @@ exports[`Storyshots Input Error 1`] = `
className="container-0-2-7 container-d5-0-2-16"
>
<input
className="ant-input error-0-2-8"
className="ant-input error"
data-test="input"
disabled={false}
onBlur={[Function]}
Expand Down
2 changes: 1 addition & 1 deletion src/components/Input/index.tsx
Expand Up @@ -69,7 +69,7 @@ export const Input: FC<InputProps> = (props: InputProps) => {

const inputClasses: string = cn(
{
[componentClasses.error]: error
error
},
classes
)
Expand Down

0 comments on commit bc334a4

Please sign in to comment.