Changes
3 changed files (+6/-3)
-
-
@@ -156,7 +156,7 @@ <Empty.Title>ページが見つかりません</Empty.Title><Empty.Description>指定された URL にページはありません。</Empty.Description> <Empty.Actions> <Button asChild size="3"> <a href={`/${workspace.id?.value}/workers`}>労働者一覧へ</a> <a href={calendar.href({ workspace })}>労働者一覧へ</a> </Button> </Empty.Actions> </Empty.Root>
-
-
-
@@ -14,6 +14,7 @@ import * as FormField from "../../components/FormField.ts";import { useMethodMutation } from "../../contexts/Service.tsx"; import { useToast } from "../../contexts/Toast.tsx"; import { IllegalMessageError } from "../../errors/IllegalMessageError.ts"; import * as calendarPage from "../:workspace/calendar/page.tsx"; export interface CreationFormProps { className?: string | undefined;
-
@@ -73,7 +74,7 @@ onClick={() => {dismiss(); }} > <a href={`/${workspace.id?.value}/workers`}>開く</a> <a href={calendarPage.href({ workspace })}>開く</a> </Button> ), type: "foreground",
-
-
-
@@ -5,6 +5,8 @@ import { Box, Button, Card, Flex, Text } from "@radix-ui/themes";import { type Workspace } from "@yamori/proto/yamori/workspace/v1/workspace_pb.js"; import { type FC } from "react"; import * as calendarPage from "../:workspace/calendar/page.tsx"; export interface WorkspaceListProps { workspaces: readonly Workspace[]; }
-
@@ -20,7 +22,7 @@ <Text weight="bold">{workspace.displayName}</Text></Box> <Flex justify="end"> <Button asChild variant="soft"> <a href={`/${workspace.id?.value}/workers`}>開く</a> <a href={calendarPage.href({ workspace })}>開く</a> </Button> </Flex> </Flex>
-