Skip to content

Commit

Permalink
## 14.18.1 - 2024-02-21
Browse files Browse the repository at this point in the history
  • Loading branch information
tabuna committed Feb 20, 2024
1 parent d83bab1 commit d4b5fd4
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
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.18.1 - 2024-02-21

### Fixed
- Asynchronous\Pending modal windows do not send screen `_state`

## 14.18.0 - 2024-01-18

### Changed
Expand Down
2 changes: 1 addition & 1 deletion public/css/orchid.rtl.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/js/orchid.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/js/orchid.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/mix-manifest.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion resources/js/controllers/modal_controller.js
Expand Up @@ -108,7 +108,9 @@ export default class extends ApplicationController {

let query = new URLSearchParams(params).toString()

this.loadStream(`${this.data.get('async-route')}?${query}`)
this.loadStream(`${this.data.get('async-route')}?${query}`, {
'_state': document.getElementById('screen-state')?.value || null
})
.then(() => this.element.classList.remove('modal-loading'));
}

Expand Down
2 changes: 1 addition & 1 deletion src/Platform/Dashboard.php
Expand Up @@ -21,7 +21,7 @@ class Dashboard
/**
* ORCHID Version.
*/
public const VERSION = '14.18.0';
public const VERSION = '14.18.1';

/**
* @deprecated
Expand Down

0 comments on commit d4b5fd4

Please sign in to comment.