Skip to content

Commit

Permalink
refs #2658 Fixed incorrect merge
Browse files Browse the repository at this point in the history
  • Loading branch information
tabuna committed May 30, 2024
1 parent 2ddedf2 commit 52854bb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## 14.25.1 - 2024-05-30

### Fixed
- Incorrect merge state and data for async modals [#2658](https://github.com/orchidsoftware/platform/issues/2658)

## 14.25.0 - 2024-05-30

### Added
Expand Down
2 changes: 1 addition & 1 deletion src/Platform/Dashboard.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class Dashboard
*
* @deprecated Use `Dashboard::version()` instead.
*/
public const VERSION = '14.25.0';
public const VERSION = '14.25.1';

/**
* @deprecated
Expand Down
2 changes: 1 addition & 1 deletion src/Screen/Screen.php
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ public function asyncBuild(string $method, string $slug)
$repository = $this->callMethod($method, $parameters);

if (is_array($repository)) {
$repository = new Repository(array_merge($repository, $state->all()));
$repository = new Repository(array_merge($state->all(), $repository));
}

$view = $this->view($repository)
Expand Down

0 comments on commit 52854bb

Please sign in to comment.