ソースを参照

fix filecard first input focus

Artur Paikin 6 年 前
コミット
be94a0a850
1 ファイル変更1 行追加1 行削除
  1. 1 1
      packages/@uppy/dashboard/src/FileCard.js

+ 1 - 1
packages/@uppy/dashboard/src/FileCard.js

@@ -16,7 +16,7 @@ module.exports = class FileCard extends Component {
 
 
   componentDidMount () {
   componentDidMount () {
     setTimeout(() => {
     setTimeout(() => {
-      if (!this.input) return
+      if (!this.firstInput) return
       this.firstInput.focus({ preventScroll: true })
       this.firstInput.focus({ preventScroll: true })
     }, 150)
     }, 150)
   }
   }