mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-11-17 19:33:38 +00:00
fix(ui): remove all option from activity feed for my-data (#11007)
* fix(ui): remove all option from activity feed for my-data * fix silent signin issue
This commit is contained in:
parent
32e9ae337f
commit
709fce6013
@ -151,7 +151,7 @@ const ActivityFeedList: FC<ActivityFeedListProp> = ({
|
|||||||
() =>
|
() =>
|
||||||
isEntityFeed
|
isEntityFeed
|
||||||
? filterList.filter((f) => f.value === 'ALL' || f.value === 'MENTIONS')
|
? filterList.filter((f) => f.value === 'ALL' || f.value === 'MENTIONS')
|
||||||
: filterList.slice(),
|
: filterList.slice(1), // Do not show ALL option on my-data
|
||||||
[isEntityFeed]
|
[isEntityFeed]
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
@ -281,7 +281,7 @@ export const AuthProvider = ({
|
|||||||
startTokenExpiryTimer();
|
startTokenExpiryTimer();
|
||||||
})
|
})
|
||||||
.catch((err) => {
|
.catch((err) => {
|
||||||
if (err.message.includes('Frame window timeouted out')) {
|
if (err.message.includes('Frame window timed out')) {
|
||||||
silentSignInRetries = 0;
|
silentSignInRetries = 0;
|
||||||
// eslint-disable-next-line @typescript-eslint/no-use-before-define
|
// eslint-disable-next-line @typescript-eslint/no-use-before-define
|
||||||
startTokenExpiryTimer();
|
startTokenExpiryTimer();
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user