Skip to content

Commit

Permalink
Merge pull request #3038 from Ren-Roros-Digital/risklocation
Browse files Browse the repository at this point in the history
fix: display risk detection location
  • Loading branch information
KelvinTegelaar authored Jan 8, 2025
2 parents 672e354 + 5d39457 commit 822447f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion Tools/Start-CippDevEmulatorsWithKitty.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ Write-Host 'Starting CIPP Dev Emulators'
Get-Process node -ErrorAction SilentlyContinue | Stop-Process -ErrorAction SilentlyContinue
$Path = (Get-Item $PSScriptRoot).Parent.Parent.FullName

$Process = Read-Host -Prompt 'Start Process Function (y/N)?'
if (Test-Path (Join-Path $Path 'CIPP-API-Processor')) {
$Process = Read-Host -Prompt 'Start Process Function (y/N)?'
}

if ($Process -eq 'y') {
kitty --detach --title 'CIPP' -o allow_remote_control=yes -- pwsh -c "
Expand Down
6 changes: 4 additions & 2 deletions src/pages/identity/reports/risk-detections/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ const Page = () => {
"userDisplayName",
"userPrincipalName",
"detectedDateTime",
"location",
"location.city",
"location.countryOrRegion",
"ipAddress",
"riskLevel",
"riskState",
Expand All @@ -34,7 +35,8 @@ const Page = () => {
const simpleColumns = [
"detectedDateTime",
"userPrincipalName",
"location",
"location.city",
"location.countryOrRegion",
"ipAddress",
"riskState",
"riskDetail",
Expand Down

0 comments on commit 822447f

Please sign in to comment.