mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-02-16 19:40:58 +03:00
fix(app): update links (#849)
This commit is contained in:
parent
42728c2114
commit
6b2ad1ebaa
|
@ -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 />
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user