File tree Expand file tree Collapse file tree
src/management-system-v2/app/(dashboard)/[environmentId]/processes/[mode]/folder/[folderId] Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -40,12 +40,12 @@ const ProcessesPage = async (props: {
4040
4141 const folderContentsFiltered = isListView
4242 ? folderContents . filter (
43- ( folderContent ) => folderContent . type === 'folder' || folderContent . versions . length > 0 ,
44- )
43+ ( folderContent ) => folderContent . type === 'folder' || folderContent . versions . length > 0 ,
44+ )
4545 : folderContents . filter (
46- ( entry ) =>
47- entry . type === 'folder' || ability . can ( 'update' , toCaslResource ( 'Process' , entry ) ) ,
48- ) ;
46+ ( entry ) =>
47+ entry . type === 'folder' || ability . can ( 'update' , toCaslResource ( 'Process' , entry ) ) ,
48+ ) ;
4949
5050 const hasNoReleasedProcesses = isListView
5151 ? folderContentsFiltered . every ( ( item ) => item . type === 'folder' )
You can’t perform that action at this time.
0 commit comments