Browse Source

Fix preview typo (#388)

James McClean 7 năm trước cách đây
mục cha
commit
d5cdd51556
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      website/src/docs/uppy.md

+ 1 - 1
website/src/docs/uppy.md

@@ -173,7 +173,7 @@ A shortcut method that returns a specific file object from `uppy.state` by its `
 ```js
 const file = uppy.getFile('uppyteamkongjpg1501851828779')
 const img = document.createElement('img')
-img.src = file.preivew
+img.src = file.preview
 document.body.appendChild(img)
 ```