Skip to content

Commit

Permalink
Updated old repo links
Browse files Browse the repository at this point in the history
  • Loading branch information
estruyf committed May 7, 2020
1 parent 5e654f8 commit 4d2e68b
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Thank you for reporting an issue, suggesting an enhancement, or asking a question. We appreciate your feedback - to help the team understand your
needs please complete the below template to ensure we have the details to help. Thanks!

**Please check out the [documentation](https://sharepoint.github.io/sp-dev-fx-controls-react/) to see if your question is already addressed there. This will help us ensure our documentation is up to date.**
**Please check out the [documentation](https://pnp.github.io/sp-dev-fx-controls-react/) to see if your question is already addressed there. This will help us ensure our documentation is up to date.**

#### Category
[ ] Enhancement
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ This is a open source library that shares a set of reusable React control that c
## Get Started

More information to get started can be found documentation of this repository: [documentation](https://sharepoint.github.io/sp-dev-fx-controls-react/).
More information to get started can be found documentation of this repository: [documentation](https://pnp.github.io/sp-dev-fx-controls-react/).

# Have issues or questions?

Please use following logic on submitting your questions or issues to right location to ensure that they are noticed and addressed as soon as possible.

* You have general question or challenge with SPFx - use [sp-dev-docs repository issue list](https://github.com/pnp/sp-dev-docs/issues).
* You have general question or challenge with SPFx - use [sp-dev-docs repository issue list](https://github.com/sharepoint/sp-dev-docs/issues).
* You have issue on specific controls in this package - use [issue list in this repository](https://github.com/pnp/sp-dev-fx-controls-react/issues).


Expand Down
4 changes: 2 additions & 2 deletions docs/documentation/docs/controls/WebPartTitle.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ You can do this as like in the following example code:
title={this.props.title}
updateProperty={this.props.updateProperty}
moreLink={
<Link href="https://sharepoint.github.io/sp-dev-fx-controls-react/">See all</Link>
<Link href="https://pnp.github.io/sp-dev-fx-controls-react/">See all</Link>
} />
```

Expand All @@ -73,7 +73,7 @@ If you wish, you may pass a callback function instead, as per the following exam
updateProperty={this.props.updateProperty}
moreLink={
()=> {
return (<Link href="https://sharepoint.github.io/sp-dev-fx-controls-react/">See all</Link>);
return (<Link href="https://pnp.github.io/sp-dev-fx-controls-react/">See all</Link>);
}
} />
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

This control renders document's name as a link. The link provides either preview (if it is available) or direct download. Additionally, new documents are marked with "Glimmer" icon.

**Note:** The Name column in document libraries is marked as noneditable. See [this issue](https://github.com/pnp/sp-dev-docs/issues/1207) for details.
**Note:** The Name column in document libraries is marked as noneditable. See [this issue](https://github.com/sharepoint/sp-dev-docs/issues/1207) for details.
**Note** Glimmer icon displays correctly starting with SharePoint Framework v1.4

![FieldNameRenderer control output](../../assets/FieldNameRenderer.png)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
"url": "https://github.com/pnp/sp-dev-fx-controls-react/issues"
},
"main": "lib/index.js",
"homepage": "https://sharepoint.github.io/sp-dev-fx-controls-react/",
"homepage": "https://pnp.github.io/sp-dev-fx-controls-react/",
"contributors": [
"Gove, Russell <[email protected]>",
"Kent Chris <>",
Expand Down
2 changes: 1 addition & 1 deletion src/controls/siteBreadcrumb/SiteBreadcrumb.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ declare const sinon;

/**
* DISCLAIMER: Currently does not work because of the following issue:
* https://github.com/pnp/sp-dev-docs/issues/526
* https://github.com/sharepoint/sp-dev-docs/issues/526
*/

// describe('<SiteBreadcrumb />', () => {
Expand Down
2 changes: 1 addition & 1 deletion src/webparts/controlsTest/components/ControlsTest.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ export default class ControlsTest extends React.Component<IControlsTestProps, IC
title={this.props.title}
updateProperty={this.props.updateProperty}
moreLink={
<Link href="https://sharepoint.github.io/sp-dev-fx-controls-react/">See all</Link>
<Link href="https://pnp.github.io/sp-dev-fx-controls-react/">See all</Link>
} />


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ export default class ControlsTest extends React.Component<IControlsTestProps, IC
title={this.props.title}
updateProperty={this.props.updateProperty}
moreLink={
<Link href="https://sharepoint.github.io/sp-dev-fx-controls-react/">See all</Link>
<Link href="https://pnp.github.io/sp-dev-fx-controls-react/">See all</Link>
} />
<div>Icon Picker</div>
<div><IconPicker renderOption="dialog" currentIcon={'Warning'} onSave={(value)=>{console.log(value);}} buttonLabel="Icon Picker"></IconPicker></div>
Expand Down

0 comments on commit 4d2e68b

Please sign in to comment.