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