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

View File

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