Skip to content
Snippets Groups Projects
Unverified Commit 2fc5e3bc authored by Kyle Doherty's avatar Kyle Doherty Committed by GitHub
Browse files

sync toast style (#8078)

parent 37e51197
No related branches found
No related tags found
No related merge requests found
......@@ -59,6 +59,11 @@ export default class UndoListing extends Component {
{undos.map(undo => (
<Card key={undo._domId} dark p={2} mt={1}>
<Flex align="center">
<Icon
name={(undo.icon && undo.icon) || "check"}
color="white"
mr={1}
/>
{typeof undo.message === "function" ? (
undo.message(undo)
) : undo.message ? (
......@@ -72,6 +77,7 @@ export default class UndoListing extends Component {
<Link
ml={1}
onClick={() => performUndo(undo.id)}
className="link text-bold"
>{t`Undo`}</Link>
)}
<Icon
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment