diff --git a/html/src/app.js b/html/src/app.js index ab85e151..03a909ed 100644 --- a/html/src/app.js +++ b/html/src/app.js @@ -4264,7 +4264,7 @@ CefSharp.BindObjectAsync( filterFn: (row, filter) => filter.value.some((v) => v === row.type) }, { - prop: 'detail', + prop: 'data', value: '' } ], diff --git a/html/src/index.pug b/html/src/index.pug index 4b5804d9..d77bd0e8 100644 --- a/html/src/index.pug +++ b/html/src/index.pug @@ -154,7 +154,7 @@ html span {{ scope.row.created_at | formatDate('YYYY-MM-DD HH24:MI:SS') }} span {{ scope.row.created_at | formatDate('HH24:MI') }} el-table-column(label="Type" prop="type" width="120") - el-table-column(label="Detail") + el-table-column(label="Detail" prop="data") template(v-once #default="scope") location(v-if="scope.row.type === 'Location'" :location="scope.row.data") span.x-link(v-else v-text="scope.row.data" @click="lookupUser(scope.row.data)")