Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
0ff1151
Feat: Add new standard for Direct Send
kris6673 May 28, 2025
bfa04ce
reset from after submit
kris6673 May 28, 2025
5c5adde
remove beta tag
JohnDuprey May 28, 2025
c9297ec
Feat: Add delete team action
kris6673 May 28, 2025
f9d9bc1
chore: update licenses data to newest from MS
kris6673 May 28, 2025
82f4fb1
Fixed issue where global settings was not updating with tenant select
ngms-psh May 28, 2025
2aad4d4
feat: Update language label to include geographic area in AutopilotPr…
kris6673 May 28, 2025
26182e3
Added a section to remove proxy addresses and set primary addresses
Jr7468 May 29, 2025
b0844f7
fix lazy loaded dev tools
JohnDuprey May 29, 2025
b27a0db
fix: add missing templates cat
kris6673 May 29, 2025
0edc954
add api offline page
JohnDuprey May 29, 2025
fa5e634
better handling for unauthenticated routes
JohnDuprey May 29, 2025
c8cf9be
tweak auth checks
JohnDuprey May 29, 2025
7e6265d
auth tweaks
JohnDuprey May 29, 2025
2d45ca4
Add functionality to add proxy addresses with a dialog interface, inc…
Jr7468 May 29, 2025
b4090ec
Make it possible to ignore disabled apps
Zacgoose May 30, 2025
eb5f447
move react query tools initialization out of App
JohnDuprey May 30, 2025
474fdf4
fix role list
JohnDuprey May 30, 2025
d00b811
update text
JohnDuprey May 30, 2025
d66c631
Chore: Update license files to newest from MS
kris6673 May 30, 2025
9bfa48e
Merge pull request #4178 from Zacgoose/huntress-app-alert
KelvinTegelaar May 30, 2025
3a8af3d
Merge pull request #4174 from kris6673/missing-cat
KelvinTegelaar May 30, 2025
d083671
Merge pull request #4163 from kris6673/issue4162
KelvinTegelaar May 30, 2025
0646b3b
Merge pull request #4160 from kris6673/license-updates
KelvinTegelaar May 30, 2025
21cc75a
Merge pull request #4161 from ngms-psh/issue-globalquaratine-tenantse…
KelvinTegelaar May 30, 2025
3ef1276
Merge pull request #4157 from kris6673/delete-team
KelvinTegelaar May 30, 2025
4b52f58
Merge pull request #4156 from kris6673/teams-resetform
KelvinTegelaar May 30, 2025
1de6fcf
Merge pull request #4155 from kris6673/feat-EXODirectSend
KelvinTegelaar May 30, 2025
a0b957d
Merge pull request #4164 from Jr7468/ProxyAddresses
KelvinTegelaar May 30, 2025
df2c31e
fix domain card grid size for search box
JohnDuprey May 30, 2025
32578a7
fix scripted alert exclusions
JohnDuprey May 30, 2025
0de30ce
json view improvements
JohnDuprey May 30, 2025
7492d9a
prevent loops on unresolved guids
JohnDuprey May 30, 2025
5b80306
up version
JohnDuprey May 30, 2025
73f2c1a
Merge pull request #4180 from KelvinTegelaar/dev
JohnDuprey May 30, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion public/version.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "8.0.0"
"version": "8.0.1"
}
32 changes: 16 additions & 16 deletions src/components/CippCards/CippDomainCards.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ function DomainResultCard({ title, data, isFetching, info, type }) {
? {
children: (
<Grid container spacing={2}>
<Grid item size={{ xs: 12 }}>
<Grid size={{ xs: 12 }}>
{info}
</Grid>
</Grid>
Expand Down Expand Up @@ -182,7 +182,7 @@ function DomainResultCard({ title, data, isFetching, info, type }) {
? {
children: (
//4 headers, "Record" and then <CippCodeBlock code={record?.Record} /> under it.
(<>
<>
<Typography variant="h6" gutterBottom>
Record:
</Typography>
Expand Down Expand Up @@ -237,7 +237,7 @@ function DomainResultCard({ title, data, isFetching, info, type }) {
value: email,
}))}
/>
</>)
</>
),
}
: type === "SPF"
Expand Down Expand Up @@ -361,7 +361,7 @@ function DomainResultCard({ title, data, isFetching, info, type }) {
}
isFetching={isFetching}
>
<Grid item size={{ xs: 12 }}>
<Grid size={{ xs: 12 }}>
{info}
</Grid>
<CippOffCanvas visible={visible} onClose={() => setVisible(false)} {...offCanvasData} />
Expand Down Expand Up @@ -483,7 +483,7 @@ export const CippDomainCards = ({ domain: propDomain = "", fullwidth = false })
return (
<form onSubmit={handleSubmit(onSubmit)}>
<Grid container spacing={3}>
<Grid item size={{ xs: fullwidth ? 12 : 4 }}>
<Grid size={{ xs: 12, md: gridItemSize }}>
<CippButtonCard
title="Domain Check"
cardSx={{ display: "flex", flexDirection: "column", height: "100%" }}
Expand All @@ -496,7 +496,7 @@ export const CippDomainCards = ({ domain: propDomain = "", fullwidth = false })
}
>
<Grid container spacing={2}>
<Grid item size={{ xs: 8 }}>
<Grid size={{ xs: 8 }}>
<Controller
name="domain"
control={control}
Expand All @@ -505,7 +505,7 @@ export const CippDomainCards = ({ domain: propDomain = "", fullwidth = false })
)}
/>
</Grid>
<Grid item size={{ xs: 4 }}>
<Grid size={{ xs: 4 }}>
<Button type="submit" variant="contained" startIcon={<SearchIcon />}>
Check
</Button>
Expand Down Expand Up @@ -562,7 +562,7 @@ export const CippDomainCards = ({ domain: propDomain = "", fullwidth = false })

{domain && (
<>
<Grid item size={{ md: gridItemSize, xs: 12 }}>
<Grid size={{ md: gridItemSize, xs: 12 }}>
<DomainResultCard
title="Whois Results"
type="whois"
Expand All @@ -575,7 +575,7 @@ export const CippDomainCards = ({ domain: propDomain = "", fullwidth = false })
}
/>
</Grid>
<Grid item size={{ md: gridItemSize, xs: 12 }}>
<Grid size={{ md: gridItemSize, xs: 12 }}>
<DomainResultCard
title="NS Records"
data={nsData}
Expand All @@ -588,10 +588,10 @@ export const CippDomainCards = ({ domain: propDomain = "", fullwidth = false })
}
/>
</Grid>
<Grid item size={{ md: gridItemSize, xs: 12 }}>
<Grid size={{ md: gridItemSize, xs: 12 }}>
<MXResultsCard domain={domain} mxData={mxData} isFetching={mxLoading} />
</Grid>
<Grid item size={{ md: gridItemSize, xs: 12 }}>
<Grid size={{ md: gridItemSize, xs: 12 }}>
<DomainResultCard
title="SPF Record"
type="SPF"
Expand All @@ -610,7 +610,7 @@ export const CippDomainCards = ({ domain: propDomain = "", fullwidth = false })
}
/>
</Grid>
<Grid item size={{ md: gridItemSize, xs: 12 }}>
<Grid size={{ md: gridItemSize, xs: 12 }}>
<DomainResultCard
title="DMARC Policy"
type="DMARC"
Expand All @@ -629,7 +629,7 @@ export const CippDomainCards = ({ domain: propDomain = "", fullwidth = false })
}
/>
</Grid>
<Grid item size={{ md: gridItemSize, xs: 12 }}>
<Grid size={{ md: gridItemSize, xs: 12 }}>
<DomainResultCard
title="DKIM Record"
data={dkimData}
Expand All @@ -648,7 +648,7 @@ export const CippDomainCards = ({ domain: propDomain = "", fullwidth = false })
}
/>
</Grid>
<Grid item size={{ md: gridItemSize, xs: 12 }}>
<Grid size={{ md: gridItemSize, xs: 12 }}>
<DomainResultCard
title="DNSSEC"
type={"DNSSEC"}
Expand All @@ -665,7 +665,7 @@ export const CippDomainCards = ({ domain: propDomain = "", fullwidth = false })
}
/>
</Grid>
<Grid item size={{ md: gridItemSize, xs: 12 }}>
<Grid size={{ md: gridItemSize, xs: 12 }}>
<DomainResultCard
title="MTA-STS"
type="MTA-STS"
Expand All @@ -685,7 +685,7 @@ export const CippDomainCards = ({ domain: propDomain = "", fullwidth = false })
/>
</Grid>
{enableHttps && (
<Grid item size={{ md: gridItemSize, xs: 12 }}>
<Grid size={{ md: gridItemSize, xs: 12 }}>
<DomainResultCard
title="HTTPS Certificate"
type="HTTPS"
Expand Down
Loading