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 | f4b66c32473fcdf74edc8c2d2cba8cd75e507639 (patch) | |
| tree | 03894fed77944b8ef143d16de635073230208d0d /FrontEnd/src/app/views/timeline-common/TimelinePropertyChangeDialog.tsx | |
| parent | c13141e248832d969f9233d6e232e178dd89c4d5 (diff) | |
| download | timeline-f4b66c32473fcdf74edc8c2d2cba8cd75e507639.tar.gz timeline-f4b66c32473fcdf74edc8c2d2cba8cd75e507639.tar.bz2 timeline-f4b66c32473fcdf74edc8c2d2cba8cd75e507639.zip | |
feat: Reset default color.
Diffstat (limited to 'FrontEnd/src/app/views/timeline-common/TimelinePropertyChangeDialog.tsx')
| -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; } |
