diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2020-04-23 08:57:10 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2020-04-23 08:57:10 +0900 |
| commit | 2ee583518608333312caa4c4303a74835b087069 (patch) | |
| tree | 3b0455f371cc6c86cb37d0f29658ec75a586725d /src | |
| parent | 12.36.0 (diff) | |
| download | misskey-2ee583518608333312caa4c4303a74835b087069.tar.gz misskey-2ee583518608333312caa4c4303a74835b087069.tar.bz2 misskey-2ee583518608333312caa4c4303a74835b087069.zip | |
fix(client): Fix a bug that if block of pages not working
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/components/page/page.if.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/components/page/page.if.vue b/src/client/components/page/page.if.vue index d73153bcd1..6bdf9cd97d 100644 --- a/src/client/components/page/page.if.vue +++ b/src/client/components/page/page.if.vue @@ -1,5 +1,5 @@ <template> -<div v-show="script.vars[value.var]"> +<div v-show="hpml.vars[value.var]"> <x-block v-for="child in value.children" :value="child" :page="page" :hpml="hpml" :key="child.id" :h="h"/> </div> </template> |