fixes
This commit is contained in:
@@ -277,10 +277,7 @@ export class OpenPanel {
|
||||
const mergedGroups = [...new Set([...this.groups, ...queuedGroups])];
|
||||
return {
|
||||
...item.payload,
|
||||
profileId:
|
||||
'profileId' in item.payload
|
||||
? (item.payload.profileId ?? this.profileId)
|
||||
: this.profileId,
|
||||
profileId: item.payload.profileId ?? this.profileId,
|
||||
groups: mergedGroups.length > 0 ? mergedGroups : undefined,
|
||||
};
|
||||
}
|
||||
@@ -291,11 +288,7 @@ export class OpenPanel {
|
||||
) {
|
||||
return {
|
||||
...item.payload,
|
||||
profileId: String(
|
||||
'profileId' in item.payload
|
||||
? (item.payload.profileId ?? this.profileId)
|
||||
: (this.profileId ?? '')
|
||||
),
|
||||
profileId: item.payload.profileId ?? this.profileId,
|
||||
} as TrackHandlerPayload['payload'];
|
||||
}
|
||||
if (item.type === 'group') {
|
||||
|
||||
Reference in New Issue
Block a user