Skip to content

Commit

Permalink
fix(webui): edit series dialog could incorrectly display MIXED placeh…
Browse files Browse the repository at this point in the history
…older
  • Loading branch information
gotson committed Sep 1, 2020
1 parent e91954f commit 5d3f061
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions komga-webui/src/components/dialogs/EditSeriesDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@
v-model="form.status"
label="Status"
filled
:placeholder="mixed.status ? 'MIXED' : ''"
:placeholder="!single && mixed.status ? 'MIXED' : ''"
@input="$v.form.status.$touch()"
@change="form.statusLock = true"
>
Expand All @@ -132,7 +132,7 @@
label="Language"
filled
dense
:placeholder="mixed.language ? 'MIXED' : ''"
:placeholder="!single && mixed.language ? 'MIXED' : ''"
:error-messages="languageErrors"
@input="$v.form.language.$touch()"
@change="form.languageLock = true"
Expand All @@ -156,7 +156,7 @@
label="Reading Direction"
clearable
filled
:placeholder="mixed.readingDirection ? 'MIXED' : ''"
:placeholder="!single && mixed.readingDirection ? 'MIXED' : ''"
@input="$v.form.readingDirection.$touch()"
@change="form.readingDirectionLock = true"
>
Expand All @@ -178,7 +178,7 @@
label="Publisher"
filled
dense
:placeholder="mixed.publisher ? 'MIXED' : ''"
:placeholder="!single && mixed.publisher ? 'MIXED' : ''"
@input="$v.form.publisher.$touch()"
@change="form.publisherLock = true"
>
Expand All @@ -200,7 +200,7 @@
filled
dense
type="number"
:placeholder="mixed.ageRating ? 'MIXED' : ''"
:placeholder="!single && mixed.ageRating ? 'MIXED' : ''"
:error-messages="ageRatingErrors"
@input="$v.form.ageRating.$touch()"
@blur="$v.form.ageRating.$touch()"
Expand Down

0 comments on commit 5d3f061

Please sign in to comment.