Skip to content

Commit

Permalink
Merge branch 'main' into releases/1.9 [skip-ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
Remi749 committed Feb 20, 2024
2 parents e703917 + cc0bdde commit 964a16f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Install/Install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ if (-not $SkipAppPackages.IsPresent) {
}
Try {
StartAction("Installing SharePoint Framework app packages to $TenantAppCatalogUrl")
foreach ($AppPkg in (Get-ChildItem "$PSScriptRoot/Apps" -ErrorAction SilentlyContinue)) {
foreach ($AppPkg in (Get-ChildItem "$PSScriptRoot/Apps/*.sppkg" -ErrorAction SilentlyContinue)) {
Add-PnPApp -Path $AppPkg.FullName -Scope Tenant -Publish -Overwrite -SkipFeatureDeployment -ErrorAction Stop >$null 2>&1
}
Disconnect-PnPOnline
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export interface ICustomEditPanelProps extends IBasePanelProps {
targetWeb?: IWeb

/**
* Target list ID used to transform property valus
* Target list ID used to transform property values
* before submitting the item.
*/
targetistId?: string
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export async function getItemFieldValues(item: IItem, userFields: string[] = [])
item
.select(
'*',
'TemplateParameters',
...userFields.map((fieldName) => `${fieldName}/Id`),
...userFields.map((fieldName) => `${fieldName}/Title`),
...userFields.map((fieldName) => `${fieldName}/EMail`)
Expand Down

0 comments on commit 964a16f

Please sign in to comment.