mirror of
https://github.com/Unleash/unleash.git
synced 2025-06-04 01:18:20 +02:00
fix: add collaborators to ignored props for feature diff notif (#7877)
Fixes a problem with demo saying you've got outdated data when someone else has worked with ya
This commit is contained in:
parent
7481ea9912
commit
5e82e47d94
@ -6,5 +6,12 @@ export const comparisonModerator = (
|
|||||||
): DeepOmit<IFeatureToggle, keyof IFeatureToggle> => {
|
): DeepOmit<IFeatureToggle, keyof IFeatureToggle> => {
|
||||||
const tempData = { ...data };
|
const tempData = { ...data };
|
||||||
|
|
||||||
return deepOmit(tempData, 'lastSeenAt', 'yes', 'no', 'lifecycle');
|
return deepOmit(
|
||||||
|
tempData,
|
||||||
|
'lastSeenAt',
|
||||||
|
'yes',
|
||||||
|
'no',
|
||||||
|
'lifecycle',
|
||||||
|
'collaborators',
|
||||||
|
);
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user