Skip to content

Commit

Permalink
fix(admin): improve tag visibilty in tag view
Browse files Browse the repository at this point in the history
  • Loading branch information
Rei-x committed Feb 27, 2023
1 parent 3291bee commit c5f8ce8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/features/admin/views/tags/get.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { Loading } from "@/components/Loading";
import { Tag } from "@/features/search";
import NotFound from "@/pages/404";
import { api } from "@/utils/api";
import { Heading } from "@chakra-ui/react";
Expand Down Expand Up @@ -26,7 +27,8 @@ export const GetTagPage = () => {
return (
<Layout>
<Heading size="lg" mb={4}>
Organizacje z tagiem {data.text}
Organizacje z tagiem
<Tag size="lg" ml={3} px={3} mt={1} tag={data.text} />
</Heading>
<OrganizationsTable
data={data.organizations.map((organization) => ({
Expand Down

0 comments on commit c5f8ce8

Please sign in to comment.