10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-07-23 11:17:42 +02:00

Fix dat mustn't be a global variable

This commit is contained in:
Mickaël Véril 2020-08-11 12:24:34 +02:00
parent b999c96837
commit dec65d5028

View File

@ -111,7 +111,7 @@ draft: false
} }
}) })
if (source !== undefined) { if (source !== undefined) {
for (dat of submol.filter((d) => d !== source)) { for (const dat of submol.filter((d) => d !== source)) {
dat.CopyExcitationsTypeFrom(source) dat.CopyExcitationsTypeFrom(source)
} }
} }