Skip to content

Commit 4d2e68b

Browse files
committed
Updated old repo links
1 parent 5e654f8 commit 4d2e68b

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Thank you for reporting an issue, suggesting an enhancement, or asking a question. We appreciate your feedback - to help the team understand your
22
needs please complete the below template to ensure we have the details to help. Thanks!
33

4-
**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.**
4+
**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.**
55

66
#### Category
77
[ ] Enhancement

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ This is a open source library that shares a set of reusable React control that c
88
99
## Get Started
1010

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

1313
# Have issues or questions?
1414

1515
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.
1616

17-
* You have general question or challenge with SPFx - use [sp-dev-docs repository issue list](https://github.com/pnp/sp-dev-docs/issues).
17+
* You have general question or challenge with SPFx - use [sp-dev-docs repository issue list](https://github.com/sharepoint/sp-dev-docs/issues).
1818
* 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).
1919

2020

docs/documentation/docs/controls/WebPartTitle.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ You can do this as like in the following example code:
6161
title={this.props.title}
6262
updateProperty={this.props.updateProperty}
6363
moreLink={
64-
<Link href="https://sharepoint.github.io/sp-dev-fx-controls-react/">See all</Link>
64+
<Link href="https://pnp.github.io/sp-dev-fx-controls-react/">See all</Link>
6565
} />
6666
```
6767

@@ -73,7 +73,7 @@ If you wish, you may pass a callback function instead, as per the following exam
7373
updateProperty={this.props.updateProperty}
7474
moreLink={
7575
()=> {
76-
return (<Link href="https://sharepoint.github.io/sp-dev-fx-controls-react/">See all</Link>);
76+
return (<Link href="https://pnp.github.io/sp-dev-fx-controls-react/">See all</Link>);
7777
}
7878
} />
7979
```

docs/documentation/docs/controls/fields/FieldNameRenderer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
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.
44

5-
**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.
5+
**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.
66
**Note** Glimmer icon displays correctly starting with SharePoint Framework v1.4
77

88
![FieldNameRenderer control output](../../assets/FieldNameRenderer.png)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
"url": "https://github.com/pnp/sp-dev-fx-controls-react/issues"
7878
},
7979
"main": "lib/index.js",
80-
"homepage": "https://sharepoint.github.io/sp-dev-fx-controls-react/",
80+
"homepage": "https://pnp.github.io/sp-dev-fx-controls-react/",
8181
"contributors": [
8282
"Gove, Russell <[email protected]>",
8383
"Kent Chris <>",

src/controls/siteBreadcrumb/SiteBreadcrumb.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ declare const sinon;
1212

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

1818
// describe('<SiteBreadcrumb />', () => {

src/webparts/controlsTest/components/ControlsTest.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,7 @@ export default class ControlsTest extends React.Component<IControlsTestProps, IC
554554
title={this.props.title}
555555
updateProperty={this.props.updateProperty}
556556
moreLink={
557-
<Link href="https://sharepoint.github.io/sp-dev-fx-controls-react/">See all</Link>
557+
<Link href="https://pnp.github.io/sp-dev-fx-controls-react/">See all</Link>
558558
} />
559559

560560

src/webparts/controlsTest/components/ControlsTest_SingleComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ export default class ControlsTest extends React.Component<IControlsTestProps, IC
455455
title={this.props.title}
456456
updateProperty={this.props.updateProperty}
457457
moreLink={
458-
<Link href="https://sharepoint.github.io/sp-dev-fx-controls-react/">See all</Link>
458+
<Link href="https://pnp.github.io/sp-dev-fx-controls-react/">See all</Link>
459459
} />
460460
<div>Icon Picker</div>
461461
<div><IconPicker renderOption="dialog" currentIcon={'Warning'} onSave={(value)=>{console.log(value);}} buttonLabel="Icon Picker"></IconPicker></div>

0 commit comments

Comments
 (0)