fix: project page empty state (#3939)
This commit is contained in:
parent
73c91654eb
commit
5c4c3f5c04
1 changed files with 1 additions and 1 deletions
|
|
@ -29,7 +29,7 @@ export const PagesListView: FC<IPagesListView> = (props) => {
|
|||
|
||||
// here we are only observing the projectPageStore, so that we can re-render the component when the projectPageStore changes
|
||||
|
||||
const emptyStateType = pageTab ? `project-page-${pageTab}` : EmptyStateType.PROJECT_PAGE_ALL;
|
||||
const emptyStateType = pageTab ? `project-page-${pageTab.toLowerCase()}` : EmptyStateType.PROJECT_PAGE_ALL;
|
||||
const isButtonVisible = pageTab !== "archived" && pageTab !== "favorites";
|
||||
|
||||
return (
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue