1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-24 15:59:41 +02:00

EE-3694 update UI of docker/custom template (#7345)

This commit is contained in:
Rex Wang 2022-07-27 21:04:31 +08:00 committed by GitHub
parent 090268d7b6
commit 6d3a33635d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 71 additions and 76 deletions

View file

@ -3,6 +3,7 @@ import clsx from 'clsx';
import { FormikErrors } from 'formik';
import { AddButton, Button } from '@@/buttons';
import { Icon } from '@@/Icon';
import { Tooltip } from '@@/Tip/Tooltip';
import { TextTip } from '@@/Tip/TextTip';
@ -131,7 +132,7 @@ export function InputList<T = DefaultType>({
disabled={disabled || index === 0}
onClick={() => handleMoveUp(index)}
>
<i className="fa fa-arrow-up" aria-hidden="true" />
<Icon icon="arrow-up" feather />
</Button>
<Button
size="small"
@ -139,7 +140,7 @@ export function InputList<T = DefaultType>({
disabled={disabled || index === value.length - 1}
onClick={() => handleMoveDown(index)}
>
<i className="fa fa-arrow-down" aria-hidden="true" />
<Icon icon="arrow-down" feather />
</Button>
</>
)}