diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-02-08 14:50:18 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-02-08 14:50:18 +0900 |
| commit | 43525c4839e2bea8818cf2fcd236a1f71d5b7473 (patch) | |
| tree | d49f31feda755925e219e8b5c633d61c33beb95a /src/web/app/auth | |
| parent | wip (diff) | |
| download | sharkey-43525c4839e2bea8818cf2fcd236a1f71d5b7473.tar.gz sharkey-43525c4839e2bea8818cf2fcd236a1f71d5b7473.tar.bz2 sharkey-43525c4839e2bea8818cf2fcd236a1f71d5b7473.zip | |
wip
Diffstat (limited to 'src/web/app/auth')
| -rw-r--r-- | src/web/app/auth/tags/form.tag | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/web/app/auth/tags/form.tag b/src/web/app/auth/tags/form.tag index 9b317fef46..f20165977f 100644 --- a/src/web/app/auth/tags/form.tag +++ b/src/web/app/auth/tags/form.tag @@ -11,7 +11,7 @@ <section> <h2>このアプリは次の権限を要求しています:</h2> <ul> - <virtual each={ p in app.permission }> + <template each={ p in app.permission }> <li v-if="p == 'account-read'">アカウントの情報を見る。</li> <li v-if="p == 'account-write'">アカウントの情報を操作する。</li> <li v-if="p == 'post-write'">投稿する。</li> @@ -21,7 +21,7 @@ <li v-if="p == 'drive-write'">ドライブを操作する。</li> <li v-if="p == 'notification-read'">通知を見る。</li> <li v-if="p == 'notification-write'">通知を操作する。</li> - </virtual> + </template> </ul> </section> </div> |