mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2026-01-05 20:17:07 +00:00
fixed no data screens (#22528)
Co-authored-by: Ashish Gupta <ashish@getcollate.io> Co-authored-by: Karan Hotchandani <33024356+karanh37@users.noreply.github.com>
This commit is contained in:
parent
6d2739f72f
commit
b8f9ac417c
@ -121,7 +121,7 @@ const ActivityFeedListV1New = ({
|
||||
if (isEmpty(entityThread) && isEmpty(feedList) && !isLoading) {
|
||||
return (
|
||||
<div
|
||||
className="p-x-md no-data-placeholder-container"
|
||||
className="p-x-md no-data-placeholder-container h-full"
|
||||
data-testid="no-data-placeholder-container"
|
||||
id="feedData">
|
||||
<ErrorPlaceHolderNew
|
||||
|
||||
@ -434,7 +434,7 @@ const AssetsTabs = forwardRef(
|
||||
}, [entityFqn]);
|
||||
|
||||
const assetErrorPlaceHolder = useMemo(() => {
|
||||
if (isObject(noDataPlaceholder) || searchValue || !permissions.Create) {
|
||||
if (isObject(noDataPlaceholder) || searchValue) {
|
||||
return (
|
||||
<ErrorPlaceHolderNew
|
||||
className="p-lg "
|
||||
|
||||
@ -49,7 +49,7 @@ const CreateErrorPlaceHolder = ({
|
||||
<div
|
||||
className={classNames(
|
||||
className,
|
||||
'h-full flex-center border-default border-radius-sm bg-white'
|
||||
'h-full flex-center border-default border-radius-sm bg-white w-full'
|
||||
)}
|
||||
data-testid={`create-error-placeholder-${heading}`}>
|
||||
<Space align="center" className="w-full" direction="vertical" size={10}>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user