diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-01-22 21:25:37 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-01-22 21:25:37 +0900 |
| commit | 45fb2ecb3a825396e4855fd95ff1970f8e9c666d (patch) | |
| tree | a8397f3598fddfde7dd27262ea2ead480dca37c2 /src/client | |
| parent | [Server] Fix #3958 (diff) | |
| download | sharkey-45fb2ecb3a825396e4855fd95ff1970f8e9c666d.tar.gz sharkey-45fb2ecb3a825396e4855fd95ff1970f8e9c666d.tar.bz2 sharkey-45fb2ecb3a825396e4855fd95ff1970f8e9c666d.zip | |
[Client] Fix UI
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/app/admin/views/abuse.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/app/admin/views/abuse.vue b/src/client/app/admin/views/abuse.vue index 22a837f1c6..11be43eeb2 100644 --- a/src/client/app/admin/views/abuse.vue +++ b/src/client/app/admin/views/abuse.vue @@ -6,10 +6,10 @@ <sequential-entrance animation="entranceFromTop" delay="25"> <div v-for="report in userReports" :key="report.id" class="haexwsjc"> <ui-horizon-group inputs> - <ui-input :value="report.user | acct" type="text"> + <ui-input :value="report.user | acct" type="text" readonly> <span>{{ $t('target') }}</span> </ui-input> - <ui-input :value="report.reporter | acct" type="text"> + <ui-input :value="report.reporter | acct" type="text" readonly> <span>{{ $t('reporter') }}</span> </ui-input> </ui-horizon-group> |