diff options
author | bobzel <zzzman@gmail.com> | 2023-08-29 12:55:49 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2023-08-29 12:55:49 -0400 |
commit | 349e586b01b18c641a4c753b709f4217a3f3e528 (patch) | |
tree | 81794fd08d3f2143c2df6e2d52a1203a9b45971d /src/client/views/UndoStack.tsx | |
parent | 936382c5cdc9f21ecd3d6b643da986bd30fc1e19 (diff) |
cleanup
Diffstat (limited to 'src/client/views/UndoStack.tsx')
-rw-r--r-- | src/client/views/UndoStack.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/UndoStack.tsx b/src/client/views/UndoStack.tsx index cdc389efe..47853b5e4 100644 --- a/src/client/views/UndoStack.tsx +++ b/src/client/views/UndoStack.tsx @@ -46,7 +46,7 @@ export class UndoStack extends React.Component<UndoStackProps> { .reverse() .map((name, i) => ( <div className="undoStack-resultContainer" key={i}> - <div className="undoStack-commandString" style={{ fontWeight: 'bold', color: 'red' }}> + <div className="undoStack-commandString" style={{ fontWeight: 'bold', color: SettingsManager.userBackgroundColor }}> {StrCast(name).replace(/[^\.]*\./, '')} </div> </div> |