commit changes bug Fix

This commit is contained in:
João Mendes 2020-08-30 22:13:11 +01:00
parent c9bf91b5c0
commit d167a68a59
6 changed files with 8 additions and 6 deletions

View File

@ -58,6 +58,8 @@ react-my-sites|João Mendes
Version|Date|Comments
-------|----|--------
1.0.0|August 6, 2020|Initial release
1.0.1|August 29, 2020|Additional updates
1.0.2|August 30, 2020|Bug Fix, new Properties
## Disclaimer

View File

@ -3,7 +3,7 @@
"solution": {
"name": "react-my-sites-client-side-solution",
"id": "ad28b382-886b-4b2a-9646-92de8a0b1d13",
"version": "1.0.0.0",
"version": "1.0.2.0",
"includeClientSideAssets": true,
"skipFeatureDeployment": true,
"isDomainIsolated": false,

View File

@ -1,6 +1,6 @@
{
"name": "react-my-sites",
"version": "0.0.1",
"version": "1.0.2.0",
"private": true,
"main": "lib/index.js",
"engines": {

View File

@ -26,7 +26,7 @@
"itemsPerPage": 20,
"enableFilterSharepointSites": true,
"enableFilterO365groups": true,
"enableFilterSitesWithSubWebs": true,
"enableFilterSitesWithSubWebs": true
}
}]
}

View File

@ -22,7 +22,7 @@ import { PropertyFieldSitePicker } from '@pnp/spfx-property-controls/lib/Propert
import { IPropertyFieldSite } from "@pnp/spfx-property-controls/lib/PropertyFieldSitePicker";
import { PropertyFieldMultiSelect } from '@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect';
import { useUserSites } from '../../Hooks/useUserSites';
import { Team } from '@microsoft/microsoft-graph-types'
export interface IPropertyControlsTestWebPartProps {
sites: IPropertyFieldSite[];
}
@ -164,7 +164,7 @@ protected async onPropertyPaneConfigurationStart() {
const _userTeams:ITeam[] = await getUserTeams(this.context.pageContext.user.loginName, _msGraphClient);
for (const _team of _userTeams) {
this._userTeamsOptions.push({key: _team.id, text: _team.displayName })
this._userTeamsOptions.push({key: _team.id, text: _team.displayName });
}
this.context.propertyPane.refresh();
}

View File

@ -210,7 +210,7 @@ export const MySites: React.FunctionComponent<IMySitesProps> = (
_Filtersites(item.text);
}
}
)
);
}
if (enableFilterSitesWithSubWebs && _sitesWithSubSties.PrimarySearchResults.length > 0){