Commit 6bbbdec8 by Johannes Zellner

Save some vertical space with smaller icons

1 parent 8553a749
Showing with 1 additions and 1 deletions
...@@ -102,7 +102,7 @@ ...@@ -102,7 +102,7 @@
<el-table :data="entries" style="max-width: 1280px;width: 100%" height="100%" empty-text="Folder is emtpy" :default-sort="{ prop: 'filePath', order: 'descending' }" @row-click="open"> <el-table :data="entries" style="max-width: 1280px;width: 100%" height="100%" empty-text="Folder is emtpy" :default-sort="{ prop: 'filePath', order: 'descending' }" @row-click="open">
<el-table-column prop="previewUrl" label="Type" width="100px" sortable> <el-table-column prop="previewUrl" label="Type" width="100px" sortable>
<template slot-scope="scope"> <template slot-scope="scope">
<img v-bind:src="scope.row.previewUrl" height="48px" width="48px" style="object-fit: cover;"/> <img v-bind:src="scope.row.previewUrl" height="32px" width="32px" style="object-fit: cover;"/>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="filePath" label="Name" sortable> <el-table-column prop="filePath" label="Name" sortable>
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!