mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-10 15:35:49 +01:00
correct paging that /1 is shown in url
This commit is contained in:
@@ -51,7 +51,7 @@ class Groups extends React.Component<Props> {
|
|||||||
*/
|
*/
|
||||||
componentDidUpdate = (prevProps: Props) => {
|
componentDidUpdate = (prevProps: Props) => {
|
||||||
const { page, list } = this.props;
|
const { page, list } = this.props;
|
||||||
if (list.page) {
|
if (list.page >= 0) {
|
||||||
// backend starts paging by 0
|
// backend starts paging by 0
|
||||||
const statePage: number = list.page + 1;
|
const statePage: number = list.page + 1;
|
||||||
if (page !== statePage) {
|
if (page !== statePage) {
|
||||||
|
|||||||
@@ -52,7 +52,7 @@ class Users extends React.Component<Props> {
|
|||||||
*/
|
*/
|
||||||
componentDidUpdate = (prevProps: Props) => {
|
componentDidUpdate = (prevProps: Props) => {
|
||||||
const { page, list } = this.props;
|
const { page, list } = this.props;
|
||||||
if (list.page) {
|
if (list.page >= 0) {
|
||||||
// backend starts paging by 0
|
// backend starts paging by 0
|
||||||
const statePage: number = list.page + 1;
|
const statePage: number = list.page + 1;
|
||||||
if (page !== statePage) {
|
if (page !== statePage) {
|
||||||
|
|||||||
Reference in New Issue
Block a user