Accept svg for tag images in file selector (#1778)

* Accept svg for tag images
This commit is contained in:
WithoutPants 2021-09-27 12:27:05 +10:00 committed by GitHub
parent b957a87a78
commit 479bd438df
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View file

@ -22,6 +22,7 @@
* Added sv-SE language option. ([#1691](https://github.com/stashapp/stash/pull/1691))
### 🐛 Bug fixes
* Accept svg files in file selector for tag images. ([#1778](https://github.com/stashapp/stash/pull/1778))
* Fix criteria being incorrectly applied when clicking back button. ([#1765](https://github.com/stashapp/stash/pull/1765))
* Show first page and fix order direction not being maintained when clicking on card popover button. ([#1765](https://github.com/stashapp/stash/pull/1765))
* Fix panic in autotagger when backslash character present in tag/performer/studio name. ([#1753](https://github.com/stashapp/stash/pull/1753))

View file

@ -225,6 +225,7 @@ export const TagEditPanel: React.FC<ITagEditPanel> = ({
setImage(null);
}}
onDelete={onDelete}
acceptSVG
/>
</div>
);