|
@@ -10,8 +10,8 @@ import {
|
|
|
Button,
|
|
|
Space,
|
|
|
} from 'antd';
|
|
|
-import { LinkOutlined, InboxOutlined } from '@ant-design/icons';
|
|
|
import { FormattedMessage } from 'react-intl';
|
|
|
+import Icon from '@/components/Icon';
|
|
|
|
|
|
const { Option } = Select;
|
|
|
|
|
@@ -154,7 +154,16 @@ const DicomNodeDetailPanel: React.FC<Props> = ({
|
|
|
}
|
|
|
>
|
|
|
<Button
|
|
|
- icon={<LinkOutlined />}
|
|
|
+ icon={
|
|
|
+ <Icon
|
|
|
+ module="module-patient"
|
|
|
+ name="Echo"
|
|
|
+ userId="base"
|
|
|
+ theme="default"
|
|
|
+ size="2x"
|
|
|
+ state="normal"
|
|
|
+ />
|
|
|
+ }
|
|
|
onClick={onTestConnection}
|
|
|
type="default"
|
|
|
style={{ width: '1.5rem' }}
|
|
@@ -169,7 +178,16 @@ const DicomNodeDetailPanel: React.FC<Props> = ({
|
|
|
}
|
|
|
>
|
|
|
<Button
|
|
|
- icon={<InboxOutlined />}
|
|
|
+ icon={
|
|
|
+ <Icon
|
|
|
+ module="module-patient"
|
|
|
+ name="Retrieve"
|
|
|
+ userId="base"
|
|
|
+ theme="default"
|
|
|
+ size="2x"
|
|
|
+ state="normal"
|
|
|
+ />
|
|
|
+ }
|
|
|
onClick={onArchive}
|
|
|
type="default"
|
|
|
style={{ width: '1.5rem' }}
|