diff options
author | monoguitari <113245090+monoguitari@users.noreply.github.com> | 2023-08-19 03:22:16 -0400 |
---|---|---|
committer | monoguitari <113245090+monoguitari@users.noreply.github.com> | 2023-08-19 03:22:16 -0400 |
commit | bdabb0eb1aeac9ea9d4f1fa40889b8d30937c1f0 (patch) | |
tree | c6c6de5490137e2e9d79f335831adc21ce109385 /src/client/views/UndoStack.tsx | |
parent | 59762bca1e2209a483eb06e54534f1294b2369d6 (diff) |
Toggling icon for mic and added webcapturedoc to dropdown
Diffstat (limited to 'src/client/views/UndoStack.tsx')
-rw-r--r-- | src/client/views/UndoStack.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/UndoStack.tsx b/src/client/views/UndoStack.tsx index a551e5332..813cdd050 100644 --- a/src/client/views/UndoStack.tsx +++ b/src/client/views/UndoStack.tsx @@ -37,7 +37,7 @@ export class UndoStack extends React.Component<UndoStackProps> { }}> {UndoManager.undoStackNames.map((name, i) => ( <div className="undoStack-resultContainer" key={i}> - <div className="undoStack-commandString">{name.replace(/[^\.]*\./, '')}</div> + <div className="undoStack-commandString">{StrCast(name).replace(/[^\.]*\./, '')}</div> </div> ))} {Array.from(UndoManager.redoStackNames) @@ -45,7 +45,7 @@ export class UndoStack extends React.Component<UndoStackProps> { .map((name, i) => ( <div className="undoStack-resultContainer" key={i}> <div className="undoStack-commandString" style={{ fontWeight: 'bold', color: 'red' }}> - {name.replace(/[^\.]*\./, '')} + {StrCast(name).replace(/[^\.]*\./, '')} </div> </div> ))} |