Skip to content

Commit 4f9abcf

Browse files
committed
Update Write-AlertTrace.ps1
1 parent 1a673eb commit 4f9abcf

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Modules/CIPPCore/Public/GraphHelper/Write-AlertTrace.ps1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ function Write-AlertTrace {
2020
$TableRow = @{
2121
'PartitionKey' = $PartitionKey
2222
'RowKey' = "$($tenantFilter)-$($cmdletName)"
23-
'CmdletName' = $cmdletName
24-
'Tenant' = $tenantFilter
23+
'CmdletName' = "$cmdletName"
24+
'Tenant' = "$tenantFilter"
2525
'LogData' = [string]$LogData
2626
}
2727
$Table.Entity = $TableRow
@@ -33,8 +33,8 @@ function Write-AlertTrace {
3333
$TableRow = @{
3434
'PartitionKey' = $PartitionKey
3535
'RowKey' = "$($tenantFilter)-$($cmdletName)"
36-
'CmdletName' = $cmdletName
37-
'Tenant' = $tenantFilter
36+
'CmdletName' = "$cmdletName"
37+
'Tenant' = "$tenantFilter"
3838
'LogData' = [string]$LogData
3939
}
4040
$Table.Entity = $TableRow

0 commit comments

Comments
 (0)