Skip to content

Commit d9dc838

Browse files
merge branch v2 (release 2.0.0-beta.32)
2 parents c7bbdb7 + d8d3e73 commit d9dc838

6 files changed

Lines changed: 15 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
11
# Changelog
22

3-
## [v2.0.0-beta.31](https://github.com/marcantondahmen/automad/commit/a7c4b9459ef02cff4ae0f6d4ca6e2349f438f1a8)
3+
## [v2.0.0-beta.32](https://github.com/marcantondahmen/automad/commit/8713cccebb050201735f8cf91d8e6d794300466f)
44

5-
Sun, 10 May 2026 12:28:25 +0200
5+
Mon, 11 May 2026 11:40:57 +0200
6+
7+
### Bugfixes
8+
9+
- fix dashboard navigation being locked when api request has failed due to bad connection ([a78951362](https://github.com/marcantondahmen/automad/commit/a789513622579b9183d61e0020e97d296c778a55))
10+
11+
## [v2.0.0-beta.31](https://github.com/marcantondahmen/automad/commit/c7bbdb71cd2b384dd258035392869077ff9b4f55)
12+
13+
Sun, 10 May 2026 12:32:26 +0200
614

715
### New Features
816

automad/src/client/admin/components/Forms/Form.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -388,14 +388,12 @@ export class FormComponent extends BaseComponent {
388388
if (this.hasAttribute(Attr.event)) {
389389
fire(this.getAttribute(Attr.event));
390390
}
391-
392-
App.removeNavigationLock(lockId);
393391
}
394392
);
395-
} else {
396-
App.removeNavigationLock(lockId);
397393
}
398394

395+
App.removeNavigationLock(lockId);
396+
399397
this.submitButtons.forEach((button) => {
400398
button.classList.remove(CSS.buttonLoading);
401399
});

automad/src/client/admin/core/request.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ import {
4343
fire,
4444
getLogger,
4545
listen,
46-
notifyError,
4746
notifyFormError,
4847
query,
4948
RequestKey,

automad/src/server/App.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
* @license See LICENSE.md for license information
5757
*/
5858
class App {
59-
const VERSION = '2.0.0-beta.31';
59+
const VERSION = '2.0.0-beta.32';
6060

6161
/**
6262
* Required PHP version.

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "automad",
3-
"version": "2.0.0-beta.31",
3+
"version": "2.0.0-beta.32",
44
"description": "Automad",
55
"author": "Marc Anton Dahmen",
66
"private": true,

0 commit comments

Comments
 (0)