Sync over from shaffuru
This commit is contained in:
@@ -1242,7 +1242,7 @@ const LicencePopup = (props) => {
|
||||
<div>
|
||||
<Grid container spacing={2} style={{ flexDirection: "row", flexWrap: "nowrap", borderRadius: '16px', display: "flex"}}>
|
||||
<Grid item maxWidth={licensePopup ? 400 : 450}>
|
||||
{selectedOrganization.subscriptions === undefined || selectedOrganization.subscriptions === null || selectedOrganization.subscriptions.length === 0 ?
|
||||
{(selectedOrganization.subscriptions === undefined || selectedOrganization.subscriptions === null || selectedOrganization.subscriptions.length === 0) && isCloud ?
|
||||
<SubscriptionObject
|
||||
index={0}
|
||||
globalUrl={globalUrl}
|
||||
|
||||
@@ -15303,7 +15303,8 @@ const AngularWorkflow = (defaultprops) => {
|
||||
<Typography>Name</Typography>
|
||||
<TextField
|
||||
style={{
|
||||
backgroundColor: "#212121",
|
||||
backgroundColor: theme.palette.inputColor,
|
||||
color: theme.palette.text.primary,
|
||||
borderRadius: theme.palette?.borderRadius,
|
||||
marginTop: 3,
|
||||
}}
|
||||
@@ -15332,7 +15333,8 @@ const AngularWorkflow = (defaultprops) => {
|
||||
<Typography>Delay</Typography>
|
||||
<TextField
|
||||
style={{
|
||||
backgroundColor: "#212121",
|
||||
backgroundColor: theme.palette.inputColor,
|
||||
color: theme.palette.text.primary,
|
||||
marginTop: 3,
|
||||
maxWidth: 50,
|
||||
}}
|
||||
|
||||
@@ -1940,7 +1940,7 @@ const Apps2 = (props) => {
|
||||
style={{
|
||||
height: 45,
|
||||
minWidth: 45,
|
||||
backgroundColor: "#2F2F2F",
|
||||
backgroundColor: theme.palette.platformColor,
|
||||
borderRadius: 4,
|
||||
padding: "8px 16px",
|
||||
}}
|
||||
@@ -1950,9 +1950,9 @@ const Apps2 = (props) => {
|
||||
}}
|
||||
>
|
||||
{isLoading ? (
|
||||
<CircularProgress size={20} style={{ color: "#FF8544" }} />
|
||||
<CircularProgress size={20} style={{ color: theme.palette.primary.main }} />
|
||||
) : (
|
||||
<CachedIcon style={{ color: "#F1F1F1" }} />
|
||||
<CachedIcon style={{ color: theme.palette.text.primary }} />
|
||||
)}
|
||||
</Button>
|
||||
</Tooltip>
|
||||
@@ -1980,7 +1980,7 @@ const Apps2 = (props) => {
|
||||
style={{
|
||||
height: 45,
|
||||
minWidth: 45,
|
||||
backgroundColor: "#2F2F2F",
|
||||
backgroundColor: theme.palette.platformColor,
|
||||
borderRadius: 4,
|
||||
padding: "8px 16px",
|
||||
}}
|
||||
@@ -1992,9 +1992,9 @@ const Apps2 = (props) => {
|
||||
}}
|
||||
>
|
||||
{isLoading ? (
|
||||
<CircularProgress size={20} style={{ color: "#FF8544" }} />
|
||||
<CircularProgress size={20} style={{ color: theme.palette.primary.main }} />
|
||||
) : (
|
||||
<CloudDownloadIcon style={{ color: "#F1F1F1" }} />
|
||||
<CloudDownloadIcon style={{ color: theme.palette.text.primary }} />
|
||||
)}
|
||||
</Button>
|
||||
</Tooltip>
|
||||
|
||||
Reference in New Issue
Block a user