mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 23:55:58 +09:00
Fix #2301
This commit is contained in:
parent
d7dbe503b6
commit
41cf856e26
@ -1,4 +1,4 @@
|
||||
const kaos = [
|
||||
const faces = [
|
||||
'(=^・・^=)',
|
||||
'v(\'ω\')v',
|
||||
'🐡( \'-\' 🐡 )フグパンチ!!!!',
|
||||
@ -7,4 +7,4 @@ const kaos = [
|
||||
'(Δ・x・Δ)'
|
||||
];
|
||||
|
||||
export default () => kaos[Math.floor(Math.random() * kaos.length)];
|
||||
export default () => faces[Math.floor(Math.random() * faces.length)];
|
@ -58,7 +58,7 @@
|
||||
import Vue from 'vue';
|
||||
import insertTextAtCursor from 'insert-text-at-cursor';
|
||||
import * as XDraggable from 'vuedraggable';
|
||||
import getKao from '../../../common/scripts/get-kao';
|
||||
import getFace from '../../../common/scripts/get-face';
|
||||
import MkVisibilityChooser from '../../../common/views/components/visibility-chooser.vue';
|
||||
import parse from '../../../../../mfm/parse';
|
||||
import { host } from '../../../config';
|
||||
@ -421,7 +421,7 @@ export default Vue.extend({
|
||||
},
|
||||
|
||||
kao() {
|
||||
this.text += getKao();
|
||||
this.text += getFace();
|
||||
}
|
||||
}
|
||||
});
|
||||
|
@ -56,7 +56,7 @@ import Vue from 'vue';
|
||||
import insertTextAtCursor from 'insert-text-at-cursor';
|
||||
import * as XDraggable from 'vuedraggable';
|
||||
import MkVisibilityChooser from '../../../common/views/components/visibility-chooser.vue';
|
||||
import getKao from '../../../common/scripts/get-kao';
|
||||
import getFace from '../../../common/scripts/get-face';
|
||||
import parse from '../../../../../mfm/parse';
|
||||
import { host } from '../../../config';
|
||||
|
||||
@ -313,7 +313,7 @@ export default Vue.extend({
|
||||
},
|
||||
|
||||
kao() {
|
||||
this.text += getKao();
|
||||
this.text += getFace();
|
||||
}
|
||||
}
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user