Include database cover in draft submission if filesystem version not present (#3465)

* Fix styling of stash-box dropdown
* Use cover blob in draft submission if present
This commit is contained in:
WithoutPants
2023-02-27 10:28:00 +11:00
committed by GitHub
parent dc934d73fa
commit 967a25f64a
6 changed files with 31 additions and 14 deletions

View File

@@ -96,7 +96,7 @@ export const SubmitStashBoxDraft: React.FC<IProps> = ({
<Form.Control
as="select"
onChange={handleSelectBox}
className="col-6"
className="col-6 input-control"
>
{boxes.map((box, i) => (
<option value={i} key={`${box.endpoint}-${i}`}>

View File

@@ -13,6 +13,7 @@
* Overhauled and improved HLS streaming. ([#3274](https://github.com/stashapp/stash/pull/3274))
### 🐛 Bug fixes
* Fixed scene cover not being included when submitting file-less scenes to stash-box. ([#3465](https://github.com/stashapp/stash/pull/3465))
* Fixed URL not being during stash-box scrape if the Studio URL is not set. ([#3439](https://github.com/stashapp/stash/pull/3439))
* Fixed generating previews for variable frame rate videos. ([#3376](https://github.com/stashapp/stash/pull/3376))
* Fixed errors reading zip files with non-UTF8 encoding. ([#3389](https://github.com/stashapp/stash/pull/3389))