fix(app): update links (#849)

This commit is contained in:
Nathan Bierema 2021-09-06 20:31:10 +00:00 committed by GitHub
parent 42728c2114
commit 6b2ad1ebaa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 4 deletions

View File

@ -34,7 +34,9 @@ class Header extends Component<Props> {
<Button
title="Documentation"
tooltipPosition="bottom"
onClick={this.openLink('http://extension.remotedev.io')}
onClick={this.openLink(
'https://github.com/reduxjs/redux-devtools/blob/main/README.md'
)}
>
<GoBook />
</Button>
@ -42,7 +44,7 @@ class Header extends Component<Props> {
title="Feedback"
tooltipPosition="bottom"
onClick={this.openLink(
'http://extension.remotedev.io/docs/Feedback.html'
'https://github.com/reduxjs/redux-devtools/discussions'
)}
>
<IoMdText />

View File

@ -92,8 +92,8 @@ class Dispatcher extends Component<Props, State> {
selectActionCreator = (selected: 'default' | 'actions-help' | number) => {
if (selected === 'actions-help') {
window.open(
'https://github.com/zalmoxisus/redux-devtools-extension/blob/master/docs/' +
'basics/Dispatcher.md'
'https://github.com/reduxjs/redux-devtools/blob/main/extension/docs/' +
'API/Arguments.md#actioncreators'
);
return;
}