diff options
author | crupest <crupest@outlook.com> | 2021-06-03 15:07:35 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-06-03 15:07:35 +0800 |
commit | 2cbb0aa75edbaf5269a4a3fdf52452834cf7ed04 (patch) | |
tree | dcc641fdfa990046a6a1d4221529885e306365aa | |
parent | e309a0e049da1275797a8a55522a310621bd69e3 (diff) | |
download | timeline-2cbb0aa75edbaf5269a4a3fdf52452834cf7ed04.tar.gz timeline-2cbb0aa75edbaf5269a4a3fdf52452834cf7ed04.tar.bz2 timeline-2cbb0aa75edbaf5269a4a3fdf52452834cf7ed04.zip |
feat: Reset default color.
-rw-r--r-- | FrontEnd/src/app/views/timeline-common/TimelinePropertyChangeDialog.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FrontEnd/src/app/views/timeline-common/TimelinePropertyChangeDialog.tsx b/FrontEnd/src/app/views/timeline-common/TimelinePropertyChangeDialog.tsx index f38485eb..70f72025 100644 --- a/FrontEnd/src/app/views/timeline-common/TimelinePropertyChangeDialog.tsx +++ b/FrontEnd/src/app/views/timeline-common/TimelinePropertyChangeDialog.tsx @@ -72,7 +72,7 @@ const TimelinePropertyChangeDialog: React.FC<TimelinePropertyChangeDialogProps> if (newDescription !== timeline.description) { req.description = newDescription; } - const nc = newColor ?? "#007bff"; + const nc = newColor ?? ""; if (nc !== timeline.color) { req.color = nc; } |