Chore: ignore 'favourites'-layer when calculating 'usedImages' to display attribution

This commit is contained in:
Pieter Vander Vennet 2024-04-22 14:43:05 +02:00
parent 42fb487d95
commit bfe2398565
4 changed files with 34 additions and 29 deletions

View file

@ -1273,7 +1273,7 @@ In the case that MapComplete is pointed to the testing grounds, the edit will be
public static TransposeMap<K extends string, V extends string>(
d: Record<K, V[]>
): Record<V, K[]> {
const newD: Record<V, K[]> = <any>{}
const newD: Record<V, K[]> = <any> {}
for (const k in d) {
const vs = d[k]