diff options
author | crupest <crupest@outlook.com> | 2021-01-09 01:07:35 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-01-09 01:07:35 +0800 |
commit | 8edf6d566cecd94d251a4e29ae8c35b77f88d6db (patch) | |
tree | 0e4371f4a40fabaf5c87baca491d2631665cd2ae /FrontEnd/src/app/views/timeline-common/TimelineCardTemplate.tsx | |
parent | 777efa6e0405f4e871de4da21b939e30ed07f754 (diff) | |
download | timeline-8edf6d566cecd94d251a4e29ae8c35b77f88d6db.tar.gz timeline-8edf6d566cecd94d251a4e29ae8c35b77f88d6db.tar.bz2 timeline-8edf6d566cecd94d251a4e29ae8c35b77f88d6db.zip |
...
Diffstat (limited to 'FrontEnd/src/app/views/timeline-common/TimelineCardTemplate.tsx')
-rw-r--r-- | FrontEnd/src/app/views/timeline-common/TimelineCardTemplate.tsx | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/FrontEnd/src/app/views/timeline-common/TimelineCardTemplate.tsx b/FrontEnd/src/app/views/timeline-common/TimelineCardTemplate.tsx index ece1942f..b2b349bc 100644 --- a/FrontEnd/src/app/views/timeline-common/TimelineCardTemplate.tsx +++ b/FrontEnd/src/app/views/timeline-common/TimelineCardTemplate.tsx @@ -56,13 +56,19 @@ function TimelineCardTemplate({ <div className="text-right mt-2"> {onHighlight != null ? ( <i - className="bi-star icon-button text-yellow mr-3" + className={clsx( + timeline.isHighlight ? "bi-star-fill" : "bi-star", + "icon-button text-yellow mr-3" + )} onClick={onHighlight} /> ) : null} {onBookmark != null ? ( <i - className="bi-bookmark icon-button text-yellow mr-3" + className={clsx( + timeline.isBookmark ? "bi-bookmark-fill" : "bi-bookmark", + "icon-button text-yellow mr-3" + )} onClick={onBookmark} /> ) : null} |