mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-24 05:05:20 -04:00
[bug] #148 interchangeable generator not working
This commit is contained in:
parent
1ee5f5128f
commit
7975d79ed5
@ -229,7 +229,7 @@
|
|||||||
selectedMorpheme: '',
|
selectedMorpheme: '',
|
||||||
|
|
||||||
customiseMultiple: false,
|
customiseMultiple: false,
|
||||||
multiple: ['on', 'ona'],
|
multiple: this.config.pronouns.multiple.examples[0].split('&'),
|
||||||
|
|
||||||
customise: false,
|
customise: false,
|
||||||
|
|
||||||
@ -284,8 +284,8 @@
|
|||||||
methods: {
|
methods: {
|
||||||
toggleMultiple(name) {
|
toggleMultiple(name) {
|
||||||
const index = this.multiple.indexOf(name);
|
const index = this.multiple.indexOf(name);
|
||||||
if (homepage > -1) {
|
if (index > -1) {
|
||||||
this.multiple.splice(homepage, 1);
|
this.multiple.splice(index, 1);
|
||||||
} else {
|
} else {
|
||||||
this.multiple.push(name);
|
this.multiple.push(name);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user