diff options
author | Brandon Millman <brandon.millman@gmail.com> | 2018-11-15 06:02:34 +0800 |
---|---|---|
committer | Brandon Millman <brandon.millman@gmail.com> | 2018-11-15 06:02:34 +0800 |
commit | 504f4d9eb99589b4d9071a6f13cea9dcc11f226d (patch) | |
tree | def28dc7bf08452e086a6efdab2b85c8a5fc60d0 /packages/instant/src/components/ui | |
parent | daf5719f082f62e46073b1badd141da445b33b09 (diff) | |
download | dexon-sol-tools-504f4d9eb99589b4d9071a6f13cea9dcc11f226d.tar dexon-sol-tools-504f4d9eb99589b4d9071a6f13cea9dcc11f226d.tar.gz dexon-sol-tools-504f4d9eb99589b4d9071a6f13cea9dcc11f226d.tar.bz2 dexon-sol-tools-504f4d9eb99589b4d9071a6f13cea9dcc11f226d.tar.lz dexon-sol-tools-504f4d9eb99589b4d9071a6f13cea9dcc11f226d.tar.xz dexon-sol-tools-504f4d9eb99589b4d9071a6f13cea9dcc11f226d.tar.zst dexon-sol-tools-504f4d9eb99589b4d9071a6f13cea9dcc11f226d.zip |
fix(instant): fix tabIndex attribute error
Diffstat (limited to 'packages/instant/src/components/ui')
-rw-r--r-- | packages/instant/src/components/ui/input.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/instant/src/components/ui/input.tsx b/packages/instant/src/components/ui/input.tsx index 184f89066..1ea5d8fe1 100644 --- a/packages/instant/src/components/ui/input.tsx +++ b/packages/instant/src/components/ui/input.tsx @@ -3,7 +3,7 @@ import * as React from 'react'; import { ColorOption, styled } from '../../style/theme'; export interface InputProps { - tabindex?: number; + tabIndex?: number; className?: string; value?: string; width?: string; |