mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-24 19:56:43 -06:00
Fix #4852
This commit is contained in:
parent
64aac9d6ad
commit
73641fd78d
1 changed files with 1 additions and 1 deletions
|
@ -337,7 +337,7 @@ export default Vue.extend({
|
||||||
getScriptBlockList(type: string = null) {
|
getScriptBlockList(type: string = null) {
|
||||||
const list = [];
|
const list = [];
|
||||||
|
|
||||||
const blocks = blockDefs.filter(block => type === null || block.out === null || block.out === type);
|
const blocks = blockDefs.filter(block => type === null || block.out === null || block.out === type || typeof block.out === 'number');
|
||||||
|
|
||||||
for (const block of blocks) {
|
for (const block of blocks) {
|
||||||
const category = list.find(x => x.category === block.category);
|
const category = list.find(x => x.category === block.category);
|
||||||
|
|
Loading…
Reference in a new issue