fix(web): emoji length computation (#1864)
This commit is contained in:
@@ -255,8 +255,8 @@ const ContentListView: FunctionComponent<Props> = ({
|
||||
return
|
||||
}
|
||||
|
||||
for (const file of files) {
|
||||
void filesController.uploadNewFile(file)
|
||||
for (let i = 0; i < files.length; i++) {
|
||||
void filesController.uploadNewFile(files[i])
|
||||
}
|
||||
}}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user