aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/views/timeline
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2023-07-11 18:45:25 +0800
committercrupest <crupest@outlook.com>2023-07-11 18:45:25 +0800
commit78f0934815a87573289c8e52af2666ea38c93251 (patch)
tree2a46597d7fd5ef64e07e557dfba4a62412e96e16 /FrontEnd/src/views/timeline
parent82d747f694288db25ebd3f2aef146c8382017158 (diff)
downloadtimeline-78f0934815a87573289c8e52af2666ea38c93251.tar.gz
timeline-78f0934815a87573289c8e52af2666ea38c93251.tar.bz2
timeline-78f0934815a87573289c8e52af2666ea38c93251.zip
Fix dialog typo.
Diffstat (limited to 'FrontEnd/src/views/timeline')
-rw-r--r--FrontEnd/src/views/timeline/MarkdownPostEdit.tsx2
-rw-r--r--FrontEnd/src/views/timeline/PostPropertyChangeDialog.tsx2
-rw-r--r--FrontEnd/src/views/timeline/TimelineCard.tsx2
-rw-r--r--FrontEnd/src/views/timeline/TimelineDeleteDialog.tsx2
-rw-r--r--FrontEnd/src/views/timeline/TimelineMember.tsx2
-rw-r--r--FrontEnd/src/views/timeline/TimelinePostView.tsx2
-rw-r--r--FrontEnd/src/views/timeline/TimelinePropertyChangeDialog.tsx2
7 files changed, 7 insertions, 7 deletions
diff --git a/FrontEnd/src/views/timeline/MarkdownPostEdit.tsx b/FrontEnd/src/views/timeline/MarkdownPostEdit.tsx
index a4f7924e..6401cfaa 100644
--- a/FrontEnd/src/views/timeline/MarkdownPostEdit.tsx
+++ b/FrontEnd/src/views/timeline/MarkdownPostEdit.tsx
@@ -8,7 +8,7 @@ import TimelinePostBuilder from "@/services/TimelinePostBuilder";
import FlatButton from "../common/button/FlatButton";
import TabPages from "../common/tab/TabPages";
-import ConfirmDialog from "../common/dailog/ConfirmDialog";
+import ConfirmDialog from "../common/dialog/ConfirmDialog";
import Spinner from "../common/Spinner";
import IconButton from "../common/button/IconButton";
diff --git a/FrontEnd/src/views/timeline/PostPropertyChangeDialog.tsx b/FrontEnd/src/views/timeline/PostPropertyChangeDialog.tsx
index 90ec82cc..fc55185c 100644
--- a/FrontEnd/src/views/timeline/PostPropertyChangeDialog.tsx
+++ b/FrontEnd/src/views/timeline/PostPropertyChangeDialog.tsx
@@ -2,7 +2,7 @@ import * as React from "react";
import { getHttpTimelineClient, HttpTimelinePostInfo } from "@/http/timeline";
-import OperationDialog from "../common/dailog/OperationDialog";
+import OperationDialog from "../common/dialog/OperationDialog";
function PostPropertyChangeDialog(props: {
open: boolean;
diff --git a/FrontEnd/src/views/timeline/TimelineCard.tsx b/FrontEnd/src/views/timeline/TimelineCard.tsx
index 5c9a7d1f..fdf7f0a0 100644
--- a/FrontEnd/src/views/timeline/TimelineCard.tsx
+++ b/FrontEnd/src/views/timeline/TimelineCard.tsx
@@ -12,7 +12,7 @@ import { getHttpBookmarkClient } from "@/http/bookmark";
import UserAvatar from "../common/user/UserAvatar";
import PopupMenu from "../common/menu/PopupMenu";
-import FullPageDialog from "../common/dailog/FullPageDialog";
+import FullPageDialog from "../common/dialog/FullPageDialog";
import Card from "../common/Card";
import TimelineDeleteDialog from "./TimelineDeleteDialog";
import ConnectionStatusBadge from "./ConnectionStatusBadge";
diff --git a/FrontEnd/src/views/timeline/TimelineDeleteDialog.tsx b/FrontEnd/src/views/timeline/TimelineDeleteDialog.tsx
index 77dfdaaf..c960b3c2 100644
--- a/FrontEnd/src/views/timeline/TimelineDeleteDialog.tsx
+++ b/FrontEnd/src/views/timeline/TimelineDeleteDialog.tsx
@@ -4,7 +4,7 @@ import { Trans } from "react-i18next";
import { getHttpTimelineClient, HttpTimelineInfo } from "@/http/timeline";
-import OperationDialog from "../common/dailog/OperationDialog";
+import OperationDialog from "../common/dialog/OperationDialog";
interface TimelineDeleteDialog {
timeline: HttpTimelineInfo;
diff --git a/FrontEnd/src/views/timeline/TimelineMember.tsx b/FrontEnd/src/views/timeline/TimelineMember.tsx
index a353ae21..aaafd173 100644
--- a/FrontEnd/src/views/timeline/TimelineMember.tsx
+++ b/FrontEnd/src/views/timeline/TimelineMember.tsx
@@ -11,7 +11,7 @@ import { getHttpTimelineClient, HttpTimelineInfo } from "@/http/timeline";
import SearchInput from "../common/SearchInput";
import UserAvatar from "../common/user/UserAvatar";
import Button from "../common/button/Button";
-import Dialog from "../common/dailog/Dialog";
+import Dialog from "../common/dialog/Dialog";
import "./TimelineMember.css";
diff --git a/FrontEnd/src/views/timeline/TimelinePostView.tsx b/FrontEnd/src/views/timeline/TimelinePostView.tsx
index 584f0a68..e3eac0f4 100644
--- a/FrontEnd/src/views/timeline/TimelinePostView.tsx
+++ b/FrontEnd/src/views/timeline/TimelinePostView.tsx
@@ -10,7 +10,7 @@ import { useClickOutside } from "@/utilities/hooks";
import UserAvatar from "../common/user/UserAvatar";
import Card from "../common/Card";
import FlatButton from "../common/button/FlatButton";
-import ConfirmDialog from "../common/dailog/ConfirmDialog";
+import ConfirmDialog from "../common/dialog/ConfirmDialog";
import TimelineLine from "./TimelineLine";
import TimelinePostContentView from "./TimelinePostContentView";
import PostPropertyChangeDialog from "./PostPropertyChangeDialog";
diff --git a/FrontEnd/src/views/timeline/TimelinePropertyChangeDialog.tsx b/FrontEnd/src/views/timeline/TimelinePropertyChangeDialog.tsx
index afd9a32d..63750445 100644
--- a/FrontEnd/src/views/timeline/TimelinePropertyChangeDialog.tsx
+++ b/FrontEnd/src/views/timeline/TimelinePropertyChangeDialog.tsx
@@ -8,7 +8,7 @@ import {
TimelineVisibility,
} from "@/http/timeline";
-import OperationDialog from "../common/dailog/OperationDialog";
+import OperationDialog from "../common/dialog/OperationDialog";
export interface TimelinePropertyChangeDialogProps {
open: boolean;