aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/views/timeline/TimelineCard.tsx
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2022-05-04 11:46:00 +0800
committercrupest <crupest@outlook.com>2022-05-04 11:46:00 +0800
commit2d516ddf139c5960fcbcbf060bba826257aede08 (patch)
tree6c7747fdb7cd0ee7c9ad1f8e6984b327393bd4d5 /FrontEnd/src/views/timeline/TimelineCard.tsx
parenta90f1a5041cf4a622f41f3b2680052e3a4d5ba11 (diff)
downloadtimeline-2d516ddf139c5960fcbcbf060bba826257aede08.tar.gz
timeline-2d516ddf139c5960fcbcbf060bba826257aede08.tar.bz2
timeline-2d516ddf139c5960fcbcbf060bba826257aede08.zip
...
Diffstat (limited to 'FrontEnd/src/views/timeline/TimelineCard.tsx')
-rw-r--r--FrontEnd/src/views/timeline/TimelineCard.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/FrontEnd/src/views/timeline/TimelineCard.tsx b/FrontEnd/src/views/timeline/TimelineCard.tsx
index b1146ad5..bcfcf180 100644
--- a/FrontEnd/src/views/timeline/TimelineCard.tsx
+++ b/FrontEnd/src/views/timeline/TimelineCard.tsx
@@ -37,7 +37,7 @@ const TimelineCard: React.FC<TimelinePageCardProps> = (props) => {
"member" | "property" | "delete" | null
>(null);
- const [collapse, setCollapse] = React.useState(false);
+ const [collapse, setCollapse] = React.useState(true);
const toggleCollapse = (): void => {
setCollapse((o) => !o);
};