diff --git a/CHANGELOG.md b/CHANGELOG.md index 392c88130..27d9cdebc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. Dates are d Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). -#### [2.5.0](https://github.com/gradido/gradido/compare/2.3.1...2.5.0) +#### [2.5.1](https://github.com/gradido/gradido/compare/2.3.1...2.5.1) - refactor(frontend): contribution form refactor [`#3442`](https://github.com/gradido/gradido/pull/3442) - feat(backend): correct user data transfer to gms [`#3433`](https://github.com/gradido/gradido/pull/3433) diff --git a/admin/package.json b/admin/package.json index 1c03029ea..8b605d03d 100644 --- a/admin/package.json +++ b/admin/package.json @@ -3,7 +3,7 @@ "description": "Administration Interface for Gradido", "main": "index.js", "author": "Moriz Wahl", - "version": "2.5.0", + "version": "2.5.1", "license": "Apache-2.0", "scripts": { "start": "node run/server.js", diff --git a/admin/src/components/ProjectBranding/ListHumhubSpaces.vue b/admin/src/components/ProjectBranding/ListHumhubSpaces.vue index 4e7a0bf77..5f28f177f 100644 --- a/admin/src/components/ProjectBranding/ListHumhubSpaces.vue +++ b/admin/src/components/ProjectBranding/ListHumhubSpaces.vue @@ -26,9 +26,9 @@ result.value?.spaces?.results || []) -const pagination = computed(() => result.value?.spaces?.pagination || {}) +const paginationTotal = computed(() => result.value?.spaces?.pagination?.total || 0) +const paginationPage = computed(() => result.value?.spaces?.pagination?.page || 1) onMounted(() => { if (props.modelValue) { diff --git a/backend/package.json b/backend/package.json index ed013825a..b121d3d8c 100644 --- a/backend/package.json +++ b/backend/package.json @@ -1,6 +1,6 @@ { "name": "gradido-backend", - "version": "2.5.0", + "version": "2.5.1", "description": "Gradido unified backend providing an API-Service for Gradido Transactions", "main": "src/index.ts", "repository": "https://github.com/gradido/gradido/backend", diff --git a/backend/src/graphql/resolver/ProjectBrandingResolver.ts b/backend/src/graphql/resolver/ProjectBrandingResolver.ts index de5b5b68a..80180f58c 100644 --- a/backend/src/graphql/resolver/ProjectBrandingResolver.ts +++ b/backend/src/graphql/resolver/ProjectBrandingResolver.ts @@ -96,8 +96,7 @@ export class ProjectBrandingResolver { if (!humhub) { throw new LogError('HumHub client not initialized') } - const offset = (page - 1) * limit - const spaces = await humhub.spaces(offset, limit) + const spaces = await humhub.spaces(page, limit) if (!spaces) { throw new LogError('Error requesting spaces from HumHub') } diff --git a/database/package.json b/database/package.json index f738b9057..d9bfa1784 100644 --- a/database/package.json +++ b/database/package.json @@ -1,6 +1,6 @@ { "name": "gradido-database", - "version": "2.5.0", + "version": "2.5.1", "description": "Gradido Database Tool to execute database migrations", "main": "src/index.ts", "repository": "https://github.com/gradido/gradido/database", diff --git a/dht-node/package.json b/dht-node/package.json index a150d037a..4fcd2d968 100644 --- a/dht-node/package.json +++ b/dht-node/package.json @@ -1,6 +1,6 @@ { "name": "gradido-dht-node", - "version": "2.5.0", + "version": "2.5.1", "description": "Gradido dht-node module", "main": "src/index.ts", "repository": "https://github.com/gradido/gradido/", diff --git a/dlt-connector/package.json b/dlt-connector/package.json index 519a02575..4edc4842b 100644 --- a/dlt-connector/package.json +++ b/dlt-connector/package.json @@ -1,6 +1,6 @@ { "name": "gradido-dlt-connector", - "version": "2.5.0", + "version": "2.5.1", "description": "Gradido DLT-Connector", "main": "src/index.ts", "repository": "https://github.com/gradido/gradido/", diff --git a/federation/package.json b/federation/package.json index f66f7f196..5b1a76236 100644 --- a/federation/package.json +++ b/federation/package.json @@ -1,6 +1,6 @@ { "name": "gradido-federation", - "version": "2.5.0", + "version": "2.5.1", "description": "Gradido federation module providing Gradido-Hub-Federation and versioned API for inter community communication", "main": "src/index.ts", "repository": "https://github.com/gradido/gradido/federation", diff --git a/frontend/package.json b/frontend/package.json index 9f8c2998c..5df2b3561 100755 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "bootstrap-vue-gradido-wallet", - "version": "2.5.0", + "version": "2.5.1", "private": true, "scripts": { "start": "node run/server.js", diff --git a/package.json b/package.json index aacb7253e..df99a831a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gradido", - "version": "2.5.0", + "version": "2.5.1", "description": "Gradido", "main": "index.js", "repository": "git@github.com:gradido/gradido.git",