Skip to content

Commit

Permalink
[Resource] Fixed issue that property is cleaned by [#15134]. (#15136)
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasYao93 authored May 28, 2021
1 parent c182350 commit 4a30586
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public override void ExecuteCmdlet()
{
DisplayName = DisplayName,
Homepage = HomePage,
IdentifierUris = (IdentifierUri == null) ? new string[] { } : IdentifierUri,
IdentifierUris = IdentifierUri,
ReplyUrls = ReplyUrl,
AvailableToOtherTenants = this.IsParameterBound(c => c.AvailableToOtherTenants) ? AvailableToOtherTenants : (bool?)null
};
Expand Down
1 change: 1 addition & 0 deletions src/Resources/Resources/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@

## Upcoming Release
* Allow naming the deployment when testing deployments [#11497]
* Fixed issue that property `IdentifierUri` is cleaned by `Update-AzAdApplication` [#15134]

## Version 4.1.0
* Changed `-IdentifierUris` in `New-AzADApplication` to optional parameter
Expand Down

0 comments on commit 4a30586

Please sign in to comment.