diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-04-17 14:06:32 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-04-17 14:06:32 +0900 |
| commit | 61461b7f5935a49ea96cdb6f8963c1a4e2434d3f (patch) | |
| tree | 84d6c2b61bb3d3dc967b3369a7e185aab17c5597 /src/client/pages/user-info.vue | |
| parent | Tweak UI (diff) | |
| download | misskey-61461b7f5935a49ea96cdb6f8963c1a4e2434d3f.tar.gz misskey-61461b7f5935a49ea96cdb6f8963c1a4e2434d3f.tar.bz2 misskey-61461b7f5935a49ea96cdb6f8963c1a4e2434d3f.zip | |
Improve client
Diffstat (limited to 'src/client/pages/user-info.vue')
| -rw-r--r-- | src/client/pages/user-info.vue | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/client/pages/user-info.vue b/src/client/pages/user-info.vue index 1d714cac33..06f2e4270d 100644 --- a/src/client/pages/user-info.vue +++ b/src/client/pages/user-info.vue @@ -18,6 +18,13 @@ </FormKeyValueView> </FormGroup> + <FormGroup> + <FormKeyValueView> + <template #key>{{ $ts.updatedAt }}</template> + <template #value><MkTime v-if="user.lastFetchedAt" mode="detail" :time="user.lastFetchedAt"/><span v-else>N/A</span></template> + </FormKeyValueView> + </FormGroup> + <FormObjectView tall :value="user"> <span>Raw</span> </FormObjectView> |