1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-12 17:10:54 +00:00

Add the ability to filter text from game names

This commit is contained in:
Pyrrhic 2020-11-15 01:47:15 -06:00
parent 32859318b2
commit 4f7cd07d58
5 changed files with 58 additions and 8 deletions

View file

@ -6,6 +6,7 @@
:words="item.words"
:removable="item.removable"
:adding="true"
:text_only="item.text_only"
@save="new_term"
/>
<div v-if="! val.length || val.length === 1 && hasInheritance" class="tw-mg-t-05 tw-c-text-alt-2 tw-font-size-4 tw-align-center tw-c-text-alt-2 tw-pd-05">
@ -19,6 +20,7 @@
:colored="item.colored"
:words="item.words"
:removable="item.removable"
:text_only="item.text_only"
@remove="remove(term)"
@save="save(term, $event)"
/>
@ -35,7 +37,14 @@ let last_id = 0;
export default {
mixins: [SettingMixin],
props: ['item', 'context'],
props: {
item: Object,
context: Object,
text_only: {
type: Boolean,
default: false
}
},
data() {
return {