{urls.map((ele,index)=>{
- const borderStyle = index < (urls.length - 1) ? {borderBlockEndWidth : 1} : {}
+ const borderStyle = index < (urls.length - 1) ? {borderBlockEndWidth : "025"} : {}
return (
diff --git a/apps/dashboard/web/polaris_web/web/src/apps/dashboard/pages/settings/Settings.jsx b/apps/dashboard/web/polaris_web/web/src/apps/dashboard/pages/settings/Settings.jsx
index e0cb1d7e46..4c05c7e1fd 100644
--- a/apps/dashboard/web/polaris_web/web/src/apps/dashboard/pages/settings/Settings.jsx
+++ b/apps/dashboard/web/polaris_web/web/src/apps/dashboard/pages/settings/Settings.jsx
@@ -35,7 +35,7 @@ const Settings = () => {
return (
} topBar={}>
-
+
diff --git a/apps/dashboard/web/polaris_web/web/src/apps/dashboard/pages/test_editor/TestEditor.jsx b/apps/dashboard/web/polaris_web/web/src/apps/dashboard/pages/test_editor/TestEditor.jsx
index 92ca21c648..3685345d07 100644
--- a/apps/dashboard/web/polaris_web/web/src/apps/dashboard/pages/test_editor/TestEditor.jsx
+++ b/apps/dashboard/web/polaris_web/web/src/apps/dashboard/pages/test_editor/TestEditor.jsx
@@ -159,7 +159,7 @@ const TestEditor = () => {
}
navigation={ addCustomTest(e)}/> }
>
-
+
diff --git a/apps/dashboard/web/polaris_web/web/src/util/func.js b/apps/dashboard/web/polaris_web/web/src/util/func.js
index da455e0207..0a39ecb420 100644
--- a/apps/dashboard/web/polaris_web/web/src/util/func.js
+++ b/apps/dashboard/web/polaris_web/web/src/util/func.js
@@ -20,6 +20,8 @@ import {
MobileIcon,
CalendarTimeIcon,
IdentityCardFilledIcon,
+ CheckCircleIcon,
+ XCircleIcon
} from "@shopify/polaris-icons";
import { saveAs } from 'file-saver'
import inventoryApi from "../apps/dashboard/pages/observe/api"
@@ -30,8 +32,6 @@ import homeFunctions from '../apps/dashboard/pages/home/module';
import {themes} from '@shopify/polaris-tokens';
import PersistStore from '../apps/main/PersistStore';
-import { circle_cancel, circle_tick_minor } from "@/apps/dashboard/components/icons";
-
const iconsUsedMap = {
CalendarIcon,ClockIcon,AlertCircleIcon,DatabaseIcon, LockIcon, KeyIcon, ProfileIcon, PasskeyIcon,
EmailIcon, CreditCardIcon, IdentityCardIcon, LocationIcon,PhoneIcon, FileIcon, ImageIcon, BankIcon, HashtagIcon,
@@ -290,12 +290,14 @@ prettifyEpoch(epoch) {
case "STOPPED":
return{
tooltipContent: "Error occurred while running the test.",
- icon: circle_cancel,
+ icon: XCircleIcon,
+ icon:"critical"
}
case "COMPLETED":
return {
tooltipContent: "Test has been completed.",
- icon: circle_tick_minor
+ icon: CheckCircleIcon,
+ color:"success"
}
default:
return {
|