Skip to content
Snippets Groups Projects
Unverified Commit 929c8400 authored by GyDi's avatar GyDi
Browse files

fix: button color

parent 57aef1d3
No related branches found
No related tags found
No related merge requests found
......@@ -44,6 +44,7 @@ const WebUIItem = (props: Props) => {
<IconButton
size="small"
title="Save"
color="inherit"
onClick={() => {
onChange(editValue);
setEditing(false);
......@@ -54,6 +55,7 @@ const WebUIItem = (props: Props) => {
<IconButton
size="small"
title="Cancel"
color="inherit"
onClick={() => {
onCancel?.();
setEditing(false);
......@@ -82,6 +84,7 @@ const WebUIItem = (props: Props) => {
<IconButton
size="small"
title="Open URL"
color="inherit"
onClick={() => onOpenUrl?.(value)}
>
<OpenInNewRounded fontSize="inherit" />
......@@ -89,6 +92,7 @@ const WebUIItem = (props: Props) => {
<IconButton
size="small"
title="Edit"
color="inherit"
onClick={() => {
setEditing(true);
setEditValue(value);
......@@ -96,7 +100,12 @@ const WebUIItem = (props: Props) => {
>
<EditRounded fontSize="inherit" />
</IconButton>
<IconButton size="small" title="Delete" onClick={onDelete}>
<IconButton
size="small"
title="Delete"
color="inherit"
onClick={onDelete}
>
<DeleteRounded fontSize="inherit" />
</IconButton>
</Stack>
......
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