mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-03-15 12:03:46 +00:00
Implemented left menu
This commit is contained in:
@@ -15,10 +15,10 @@ import './ShortUrlsList.scss';
|
||||
|
||||
export class ShortUrlsList extends React.Component {
|
||||
componentDidMount() {
|
||||
const { match } = this.props;
|
||||
this.props.listShortUrls(match.params.serverId, {
|
||||
const { match: { params } } = this.props;
|
||||
this.props.listShortUrls(params.serverId, {
|
||||
...this.props.shortUrlsListParams,
|
||||
page: match.params.page
|
||||
page: params.page
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user