Skip to content
This repository has been archived by the owner on Apr 14, 2024. It is now read-only.

Commit

Permalink
refactor: фильтр
Browse files Browse the repository at this point in the history
  • Loading branch information
DieWerkself committed Nov 27, 2023
1 parent c575d84 commit 0fd03d2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/entities/project/filter/ui/Filter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,9 @@ export const Filter = ({ isLoading, totalItems = 0 }: FilterProps) => {
w="full"
onClick={onClose}
>
{totalItems ? `Найдено позиций: ${totalItems}` : 'Позиций не найдено'}
{totalItems
? `Найдено позиций для проектов: ${totalItems}`
: 'Позиций для проектов не найдено'}
</Button>
</Container>
</ModalContent>
Expand Down

0 comments on commit 0fd03d2

Please sign in to comment.