1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-04-30 16:55:40 +02:00

テキストのリスト内で変数埋め込みできるように

This commit is contained in:
syuilo
2019-05-10 16:08:01 +09:00
parent 3126d0730a
commit 756e4eaeec

View File

@@ -105,7 +105,7 @@ export class ASEvaluator {
}
if (block.type === 'textList') {
return block.value.trim().split('\n');
return this.interpolate(block.value || '', scope).trim().split('\n');
}
if (block.type === 'ref') {