|
|
@@ -30,15 +30,13 @@ export default function SidebarFilters() {
|
|
|
const { t } = useTranslation()
|
|
|
|
|
|
return (
|
|
|
- <div className="row-spaced ng-scope">
|
|
|
- <ul className="list-unstyled folders-menu">
|
|
|
- <SidebarFilter filter="all" text={t('all_projects')} />
|
|
|
- <SidebarFilter filter="owned" text={t('your_projects')} />
|
|
|
- <SidebarFilter filter="shared" text={t('shared_with_you')} />
|
|
|
- <SidebarFilter filter="archived" text={t('archived_projects')} />
|
|
|
- <SidebarFilter filter="trashed" text={t('trashed_projects')} />
|
|
|
- <TagsList />
|
|
|
- </ul>
|
|
|
- </div>
|
|
|
+ <ul className="list-unstyled project-list-filters">
|
|
|
+ <SidebarFilter filter="all" text={t('all_projects')} />
|
|
|
+ <SidebarFilter filter="owned" text={t('your_projects')} />
|
|
|
+ <SidebarFilter filter="shared" text={t('shared_with_you')} />
|
|
|
+ <SidebarFilter filter="archived" text={t('archived_projects')} />
|
|
|
+ <SidebarFilter filter="trashed" text={t('trashed_projects')} />
|
|
|
+ <TagsList />
|
|
|
+ </ul>
|
|
|
)
|
|
|
}
|