Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
- Fixed the PnP PowerShell version check to only check nightly version in nightly builds and major version in release builds. [#4453](https://github.com/pnp/powershell/pull/4453)
- Fixed `-ConsistencyLevelEventual` flag on `Invoke-PnPGraphMethod` to work correctly. [#4523](https://github.com/pnp/powershell/pull/4523)
- Fixed `Get-PnPServiceHealthIssue` returning an error when certain service states were active [#4530](https://github.com/pnp/powershell/pull/4530)
- Fixed `Add-PnPFileSensitivityLabel` cmdlet to allow empty string value to reset file sensitivity label.

### Removed

Expand Down
2 changes: 2 additions & 0 deletions src/Commands/Files/AddFileSensitivityLabel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ public class AddFileSensitivityLabel : PnPGraphCmdlet
public FilePipeBind Identity;

[Parameter(Mandatory = true)]
[AllowNull]
[AllowEmptyString]
public string SensitivityLabelId;

[Parameter(Mandatory = false)]
Expand Down
Loading