mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 12:54:38 +03:00
Fix tag/studio alias and caption null filtering (#2990)
* Fix null filter for alias/captions * Fix error when selecting is null for captions
This commit is contained in:
@@ -28,7 +28,7 @@ export const CaptionsCriterionOption = new CaptionsCriterionOptionType(
|
||||
|
||||
export class CaptionCriterion extends StringCriterion {
|
||||
protected toCriterionInput() {
|
||||
const value = valueToCode(this.value);
|
||||
const value = valueToCode(this.value) ?? "";
|
||||
|
||||
return {
|
||||
value,
|
||||
|
||||
Reference in New Issue
Block a user