mirror of
https://github.com/makeplane/plane
synced 2025-08-07 19:59:33 +00:00
fix: empty state for view page fixed (#5090)
This commit is contained in:
@@ -25,7 +25,7 @@ export const ProjectViewsList = observer(() => {
|
||||
|
||||
if (loader || !projectViews || !filteredProjectViews) return <ViewListLoader />;
|
||||
|
||||
if (filteredProjectViews.length === 0 && projectViews) {
|
||||
if (filteredProjectViews.length === 0 && projectViews.length > 0) {
|
||||
return (
|
||||
<div className="h-full w-full grid place-items-center">
|
||||
<div className="text-center">
|
||||
|
||||
Reference in New Issue
Block a user