forked from FoundKeyGang/FoundKey
Update instance-mute.vue
This commit is contained in:
parent
caf0a219a6
commit
0abe2dfee0
1 changed files with 2 additions and 5 deletions
|
@ -10,12 +10,11 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { defineComponent } from 'vue'
|
import { defineComponent } from 'vue';
|
||||||
import FormTextarea from '@/components/form/textarea.vue';
|
import FormTextarea from '@/components/form/textarea.vue';
|
||||||
import MkInfo from '@/components/ui/info.vue';
|
import MkInfo from '@/components/ui/info.vue';
|
||||||
import MkButton from '@/components/ui/button.vue';
|
import MkButton from '@/components/ui/button.vue';
|
||||||
import * as os from '@/os';
|
import * as os from '@/os';
|
||||||
import number from '@/filters/number';
|
|
||||||
import * as symbols from '@/symbols';
|
import * as symbols from '@/symbols';
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
|
@ -39,7 +38,7 @@ export default defineComponent({
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
watch: {
|
watch: {
|
||||||
instanceMutes: {
|
instanceMutes: {
|
||||||
handler() {
|
handler() {
|
||||||
this.changed = true;
|
this.changed = true;
|
||||||
|
@ -68,8 +67,6 @@ export default defineComponent({
|
||||||
// Refresh filtered list to signal to the user how they've been saved
|
// Refresh filtered list to signal to the user how they've been saved
|
||||||
this.instanceMutes = mutes.join('\n');
|
this.instanceMutes = mutes.join('\n');
|
||||||
},
|
},
|
||||||
|
|
||||||
number //?
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Reference in a new issue