We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5f833f3 + bc3c5d6 commit 7946c42Copy full SHA for 7946c42
Modules/CIPPCore/Public/Entrypoints/Invoke-ListLogs.ps1
@@ -128,7 +128,7 @@ function Invoke-ListLogs {
128
129
foreach ($Row in $Rows) {
130
if ($AllowedTenants -contains 'AllTenants' -or ($AllowedTenants -notcontains 'AllTenants' -and ($TenantList.defaultDomainName -contains $Row.Tenant -or $Row.Tenant -eq 'CIPP' -or $TenantList.customerId -contains $Row.TenantId)) ) {
131
- if ($Row.StandardTemplateId) {
+ if ($StandardTaskFilter -and $Row.StandardTemplateId) {
132
$Standard = ($Templates | Where-Object { $_.RowKey -eq $Row.StandardTemplateId }).JSON | ConvertFrom-Json
133
134
$StandardInfo = @{
0 commit comments