commit changes bug Fix
This commit is contained in:
parent
c9bf91b5c0
commit
d167a68a59
|
@ -58,6 +58,8 @@ react-my-sites|João Mendes
|
||||||
Version|Date|Comments
|
Version|Date|Comments
|
||||||
-------|----|--------
|
-------|----|--------
|
||||||
1.0.0|August 6, 2020|Initial release
|
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
|
## Disclaimer
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
"solution": {
|
"solution": {
|
||||||
"name": "react-my-sites-client-side-solution",
|
"name": "react-my-sites-client-side-solution",
|
||||||
"id": "ad28b382-886b-4b2a-9646-92de8a0b1d13",
|
"id": "ad28b382-886b-4b2a-9646-92de8a0b1d13",
|
||||||
"version": "1.0.0.0",
|
"version": "1.0.2.0",
|
||||||
"includeClientSideAssets": true,
|
"includeClientSideAssets": true,
|
||||||
"skipFeatureDeployment": true,
|
"skipFeatureDeployment": true,
|
||||||
"isDomainIsolated": false,
|
"isDomainIsolated": false,
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "react-my-sites",
|
"name": "react-my-sites",
|
||||||
"version": "0.0.1",
|
"version": "1.0.2.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
"engines": {
|
"engines": {
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
"itemsPerPage": 20,
|
"itemsPerPage": 20,
|
||||||
"enableFilterSharepointSites": true,
|
"enableFilterSharepointSites": true,
|
||||||
"enableFilterO365groups": true,
|
"enableFilterO365groups": true,
|
||||||
"enableFilterSitesWithSubWebs": true,
|
"enableFilterSitesWithSubWebs": true
|
||||||
}
|
}
|
||||||
}]
|
}]
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,7 +22,7 @@ import { PropertyFieldSitePicker } from '@pnp/spfx-property-controls/lib/Propert
|
||||||
import { IPropertyFieldSite } from "@pnp/spfx-property-controls/lib/PropertyFieldSitePicker";
|
import { IPropertyFieldSite } from "@pnp/spfx-property-controls/lib/PropertyFieldSitePicker";
|
||||||
import { PropertyFieldMultiSelect } from '@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect';
|
import { PropertyFieldMultiSelect } from '@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect';
|
||||||
import { useUserSites } from '../../Hooks/useUserSites';
|
import { useUserSites } from '../../Hooks/useUserSites';
|
||||||
import { Team } from '@microsoft/microsoft-graph-types'
|
|
||||||
export interface IPropertyControlsTestWebPartProps {
|
export interface IPropertyControlsTestWebPartProps {
|
||||||
sites: IPropertyFieldSite[];
|
sites: IPropertyFieldSite[];
|
||||||
}
|
}
|
||||||
|
@ -164,7 +164,7 @@ protected async onPropertyPaneConfigurationStart() {
|
||||||
const _userTeams:ITeam[] = await getUserTeams(this.context.pageContext.user.loginName, _msGraphClient);
|
const _userTeams:ITeam[] = await getUserTeams(this.context.pageContext.user.loginName, _msGraphClient);
|
||||||
|
|
||||||
for (const _team of _userTeams) {
|
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();
|
this.context.propertyPane.refresh();
|
||||||
}
|
}
|
||||||
|
|
|
@ -210,7 +210,7 @@ export const MySites: React.FunctionComponent<IMySitesProps> = (
|
||||||
_Filtersites(item.text);
|
_Filtersites(item.text);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
)
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (enableFilterSitesWithSubWebs && _sitesWithSubSties.PrimarySearchResults.length > 0){
|
if (enableFilterSitesWithSubWebs && _sitesWithSubSties.PrimarySearchResults.length > 0){
|
||||||
|
|
Loading…
Reference in New Issue