chore(#1667): graceful handling of none type for backward compatibility

This commit is contained in:
Anoop M D
2024-02-27 01:29:10 +05:30
parent 7c416a99ef
commit 1cf8a2f3f1
3 changed files with 27 additions and 11 deletions

View File

@@ -34,12 +34,13 @@ const Auth = ({ item, collection }) => {
}
case 'inherit': {
return (
<div className="flex flex-row w-full mt-2 gap-4">
<div className="flex flex-row w-full mt-2 gap-2">
<div>Auth inherited from the Collection: </div>
<div className="inherit-mode-text">{humanizeRequestAuthMode(collectionAuth?.mode)}</div>
</div>
);
}
}
};
return (
@@ -51,4 +52,5 @@ const Auth = ({ item, collection }) => {
</StyledWrapper>
);
};
export default Auth;