File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
src/commands/default-commands Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 4545 - name : 🚀 Publish release
4646 env :
4747 NODE_AUTH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
48- run : npm publish --tag=beta -- non-interactive
48+ run : npm publish --non-interactive
Original file line number Diff line number Diff line change 11{
22 "name" : " @devfolioco/react-mde" ,
3- "version" : " 1.0.1 " ,
3+ "version" : " 1.0.2 " ,
44 "description" : " React Markdown Editor" ,
55 "main" : " ./lib/js/index.js" ,
66 "types" : " ./lib/definitions/index.d.ts" ,
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ function dataTransferToArray(items: DataTransferItemList): Array<File> {
2222function fileListToArray ( list : FileList ) : Array < File > {
2323 const result = [ ] ;
2424 for ( var i = 0 ; i < list . length ; i ++ ) {
25- result . push ( list [ 0 ] ) ;
25+ result . push ( list [ i ] ) ;
2626 }
2727 return result ;
2828}
You can’t perform that action at this time.
0 commit comments