diff --git a/assets/icons/softwareupdateicon.svg b/assets/icons/softwareupdateicon.svg
new file mode 100644
index 0000000..ebe6497
--- /dev/null
+++ b/assets/icons/softwareupdateicon.svg
@@ -0,0 +1,8 @@
+
+
+
diff --git a/src/components/Dashboard/Management/About.jsx b/src/components/Dashboard/Management/About.jsx
index b460d92..6c3257a 100644
--- a/src/components/Dashboard/Management/About.jsx
+++ b/src/components/Dashboard/Management/About.jsx
@@ -21,6 +21,7 @@ import { ElectronContext } from '../context/ElectronContext'
import { AppUpdateContext } from '../context/AppUpdateContext'
import { useMediaQuery } from 'react-responsive'
import FarmControlAppIcon from '../../Logos/FarmControlAppIcon'
+import SoftwareUpdateIcon from '../../Icons/SoftwareUpdateIcon'
const { Title, Text, Link } = Typography
const About = () => {
@@ -53,7 +54,7 @@ const About = () => {
actions.unshift(
{
label: 'Check for Updates',
- icon: ,
+ icon: ,
onClick: checkForUpdates
},
{ type: 'divider' }
@@ -126,9 +127,7 @@ const About = () => {
collapseKey='purchaseOrderStats'
>
-
+
diff --git a/src/components/Dashboard/Management/AppUpdates/AppUpdateProgress.jsx b/src/components/Dashboard/Management/AppUpdates/AppUpdateProgress.jsx
index 8fe8d15..482c3f8 100644
--- a/src/components/Dashboard/Management/AppUpdates/AppUpdateProgress.jsx
+++ b/src/components/Dashboard/Management/AppUpdates/AppUpdateProgress.jsx
@@ -1,6 +1,6 @@
import PropTypes from 'prop-types'
import { useState } from 'react'
-import { Button, Flex, Modal, Progress, Typography, theme } from 'antd'
+import { Button, Flex, Modal, Progress, Typography, theme, Divider } from 'antd'
import CloudIcon from '../../../Icons/CloudIcon'
import HostIcon from '../../../Icons/HostIcon'
@@ -188,6 +188,7 @@ const AppUpdateProgress = ({ progress, update, onClose }) => {
{update?.branch ? `${update.branch}` : 'unknown'}...
+
{
+
+ {installingUpdate ? 'Software Update' : 'Software Update Available'}
+
}
open={updateModalOpen}
footer={null}
diff --git a/src/components/Icons/SoftwareUpdateIcon.jsx b/src/components/Icons/SoftwareUpdateIcon.jsx
new file mode 100644
index 0000000..546a8e5
--- /dev/null
+++ b/src/components/Icons/SoftwareUpdateIcon.jsx
@@ -0,0 +1,8 @@
+import Icon from '@ant-design/icons'
+import CustomIconSvg from '../../../assets/icons/softwareupdateicon.svg?react'
+
+const SoftwareUpdateIcon = (props) => (
+
+)
+
+export default SoftwareUpdateIcon