Skip to content

Commit 5f87af5

Browse files
authored
Merge pull request #519 from Lemoncode/update/#510-Change-rubber-icon-to-delete-a-field-to-trashcan
update/#510 Change rubber icon to delete a field to trashcan
2 parents 063c1b4 + 4d36fa7 commit 5f87af5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pods/edit-table/components/commands/commands.component.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { CommandIconButton } from './command-icon-button';
33
import { FieldVm } from '../../edit-table.vm';
44
import { GUID, GenerateGUID } from '@/core/model';
55
import { isFirstItemInArray, isLastItemInArray } from './commands.business';
6-
import { AddFolder, UpIcon, DownIcon, RemoveIcon } from '@/common/components';
6+
import { AddFolder, UpIcon, DownIcon, TrashIcon } from '@/common/components';
77

88
interface Props {
99
onDeleteField: (fieldId: GUID) => void;
@@ -50,7 +50,7 @@ export const Commands: React.FC<Props> = (props: Props) => {
5050
)}
5151
{isDeleteVisible && (
5252
<CommandIconButton
53-
icon={<RemoveIcon />}
53+
icon={<TrashIcon />}
5454
onClick={() => onDeleteField(field.id)}
5555
ariaLabel={REMOVE_ICON + field.name}
5656
/>

0 commit comments

Comments
 (0)