You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On the cmdlet New-PnPTermLabel, if the parameter 'IsDefault' is set, it should insert a default label (a name).
If the parameter 'IsDefault' is not present, it should insert a synonym.
Actual behavior
Currently the presence/absence of the parameter 'IsDefault' does no do anything. The new label is always inserted as default label, and the previous one is set as a 'synonym'.
Steps to reproduce behavior
This code should include a synonym on the term:
New-PnPTermLabel -Name "City of Paris" -Lcid 1033 -Term myTermId
What is the version of the Cmdlet module you are running?
Module version : 2.12.0
Which operating system/environment are you running PnP PowerShell on?
[*] Windows
The text was updated successfully, but these errors were encountered:
I experience the exact same behavior. I think the bug is on Line 27 in src/Commands/Taxonomy/NewTermLabel.cs where the SwitchParameter "IsDefault" is set to true.
@TRACKSENS
You may add a synonym by issuing a following command:
New-PnPTermLabel -Name "City of Paris" -Lcid 1033 -Term myTermId -IsDefault:$false
I would not call this as a bug. What I may propose is an update to the documentation (to clearly indicate that without explicit value new term label becomes a default one).
Changing the code now to make IsDefault = false would be a breaking change for all scripts using this cmdlet.
Hello,
On the cmdlet New-PnPTermLabel, if the parameter 'IsDefault' is set, it should insert a default label (a name).
If the parameter 'IsDefault' is not present, it should insert a synonym.
Actual behavior
Currently the presence/absence of the parameter 'IsDefault' does no do anything. The new label is always inserted as default label, and the previous one is set as a 'synonym'.
Steps to reproduce behavior
This code should include a synonym on the term:
New-PnPTermLabel -Name "City of Paris" -Lcid 1033 -Term myTermId
What is the version of the Cmdlet module you are running?
Module version : 2.12.0
Which operating system/environment are you running PnP PowerShell on?
The text was updated successfully, but these errors were encountered: