diff options
| author | crupest <crupest@outlook.com> | 2020-06-16 16:25:49 +0800 |
|---|---|---|
| committer | crupest <crupest@outlook.com> | 2020-06-16 16:25:49 +0800 |
| commit | d123c88d36525781ed63d29d4b6d983e8b0e59b2 (patch) | |
| tree | 90af14a5c0cc926a3be179b8f09ec1b909b9f8a9 | |
| parent | b38beb5a731d5e897103aa1d8b9056a1f4b04a64 (diff) | |
| download | timeline-d123c88d36525781ed63d29d4b6d983e8b0e59b2.tar.gz timeline-d123c88d36525781ed63d29d4b6d983e8b0e59b2.tar.bz2 timeline-d123c88d36525781ed63d29d4b6d983e8b0e59b2.zip | |
fix(front): Card collapse button is reversed.
| -rw-r--r-- | Timeline/ClientApp/src/app/timeline/TimelinePageTemplateUI.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Timeline/ClientApp/src/app/timeline/TimelinePageTemplateUI.tsx b/Timeline/ClientApp/src/app/timeline/TimelinePageTemplateUI.tsx index d5dc2346..e8817349 100644 --- a/Timeline/ClientApp/src/app/timeline/TimelinePageTemplateUI.tsx +++ b/Timeline/ClientApp/src/app/timeline/TimelinePageTemplateUI.tsx @@ -195,8 +195,8 @@ export default function TimelinePageTemplateUI< <Svg src={ infoCardCollapse - ? arrowsAngleContractIcon - : arrowsAngleExpandIcon + ? arrowsAngleExpandIcon + : arrowsAngleContractIcon } collapse={infoCardCollapse} onClick={() => { |
