This commit is contained in:
Carl-Gerhard Lindesvärd
2026-03-06 09:00:10 +01:00
parent 765e4aa107
commit 90881e5ffb
68 changed files with 4092 additions and 1694 deletions

View File

@@ -203,6 +203,7 @@ export class OpenPanel {
payload: {
id: groupId,
...metadata,
profileId: this.profileId,
},
});
}
@@ -297,6 +298,12 @@ export class OpenPanel {
),
} as TrackHandlerPayload['payload'];
}
if (item.type === 'group') {
return {
...item.payload,
profileId: item.payload.profileId ?? this.profileId,
};
}
return item.payload;
}