mirror of
https://github.com/docmost/docmost
synced 2025-03-28 21:13:28 +00:00
singular & plural count
This commit is contained in:
parent
078959dfa0
commit
7f0fd45f3a
@ -92,10 +92,12 @@ function ImportFormatSelection({ spaceId, onClose }: ImportFormatSelection) {
|
||||
}
|
||||
|
||||
if (pageCount > 0) {
|
||||
const pageCountText = pageCount === 1 ? "1 page" : `${pageCount} pages`;
|
||||
|
||||
notifications.update({
|
||||
id: alert,
|
||||
color: "teal",
|
||||
title: `Successfully imported ${pageCount} pages`,
|
||||
title: `Successfully imported ${pageCountText}`,
|
||||
message: "Your import is complete.",
|
||||
icon: <IconCheck size={18} />,
|
||||
loading: false,
|
||||
|
@ -3,6 +3,7 @@ import React, { useState } from "react";
|
||||
import { useGetSpacesQuery } from "@/features/space/queries/space-query.ts";
|
||||
import SpaceSettingsModal from "@/features/space/components/settings-modal.tsx";
|
||||
import { useDisclosure } from "@mantine/hooks";
|
||||
import { formatMemberCount } from "@/lib";
|
||||
|
||||
export default function SpaceList() {
|
||||
const { data, isLoading } = useGetSpacesQuery();
|
||||
@ -50,7 +51,7 @@ export default function SpaceList() {
|
||||
</Group>
|
||||
</Table.Td>
|
||||
|
||||
<Table.Td>{space.memberCount} members</Table.Td>
|
||||
<Table.Td>{formatMemberCount(space.memberCount)}</Table.Td>
|
||||
</Table.Tr>
|
||||
))}
|
||||
</Table.Tbody>
|
||||
|
Loading…
x
Reference in New Issue
Block a user