Browse Source

perf: batch add to photos in order of image selection (#631)

master
Zhai Jiayu 2 years ago committed by GitHub
parent
commit
e21ef827d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/views/sheet/independent/PhotoList.vue

2
src/views/sheet/independent/PhotoList.vue

@ -345,7 +345,7 @@ export default {
if (!raw.length) {
return
}
const photosToStage = raw.map(attachment => {
const photosToStage = raw.reverse().map(attachment => {
return {
name: attachment.name,
url: attachment.path,

Loading…
Cancel
Save