This commit is contained in:
2020-12-21 18:15:15 +00:00
parent 1153c16ffb
commit d2fc4b7cf3

View File

@@ -246,7 +246,7 @@
<v-list-item-title> <v-list-item-title>
{{ getHeaderText(c.key) }}</v-list-item-title {{ getHeaderText(c.key) }}</v-list-item-title
> >
<v-list-item-subtitle v-bind:style="cellStyle(c)"> <v-list-item-subtitle v-bind:style="cellStyle(c)">
<template v-if="c.t == 1"> <template v-if="c.t == 1">
<!-- DATETIME --> <!-- DATETIME -->
{{ c.v }} {{ c.v }}
@@ -585,7 +585,10 @@ export default {
if (c.clr[0] != "#") { if (c.clr[0] != "#") {
c.clr = "#" + c.clr; c.clr = "#" + c.clr;
} }
return { border: `4px solid ${c.clr}` }; return {
"border-left": `5px solid ${c.clr}`
// , "border-top": `4px solid ${c.clr}`
};
} }
return null; return null;
}, },