case 4141
This commit is contained in:
@@ -31,9 +31,9 @@
|
|||||||
<v-list-item-content>
|
<v-list-item-content>
|
||||||
<v-list-item-title v-text="item.name"></v-list-item-title>
|
<v-list-item-title v-text="item.name"></v-list-item-title>
|
||||||
|
|
||||||
<v-list-item-subtitle
|
<v-list-item-subtitle v-text="item.info"
|
||||||
v-text="item.date"
|
></v-list-item-subtitle
|
||||||
></v-list-item-subtitle>
|
>
|
||||||
|
|
||||||
<v-list-item-subtitle
|
<v-list-item-subtitle
|
||||||
v-text="item.notes"
|
v-text="item.notes"
|
||||||
@@ -77,7 +77,7 @@
|
|||||||
></v-list-item-title>
|
></v-list-item-title>
|
||||||
|
|
||||||
<v-list-item-subtitle
|
<v-list-item-subtitle
|
||||||
v-text="item.date"
|
v-text="item.info"
|
||||||
></v-list-item-subtitle>
|
></v-list-item-subtitle>
|
||||||
|
|
||||||
<v-list-item-subtitle
|
<v-list-item-subtitle
|
||||||
@@ -285,12 +285,18 @@ export default {
|
|||||||
concurrency: o.concurrency,
|
concurrency: o.concurrency,
|
||||||
url: window.$gz.api.attachmentDownloadUrl(o.id, o.contentType),
|
url: window.$gz.api.attachmentDownloadUrl(o.id, o.contentType),
|
||||||
name: o.displayFileName,
|
name: o.displayFileName,
|
||||||
date: window.$gz.locale.utcDateToShortDateAndTimeLocalized(
|
info: `${window.$gz.locale.utcDateToShortDateAndTimeLocalized(
|
||||||
o.lastModified,
|
o.lastModified,
|
||||||
timeZoneName,
|
timeZoneName,
|
||||||
languageName,
|
languageName,
|
||||||
hour12
|
hour12
|
||||||
),
|
)} ${o.attachedByUser} ${window.$gz.locale.humanFileSize(
|
||||||
|
o.size,
|
||||||
|
languageName,
|
||||||
|
false,
|
||||||
|
2
|
||||||
|
)}`,
|
||||||
|
|
||||||
notes: o.notes ? o.notes : "",
|
notes: o.notes ? o.notes : "",
|
||||||
icon: window.$gz.util.iconForFile(o.displayFileName, o.contentType)
|
icon: window.$gz.util.iconForFile(o.displayFileName, o.contentType)
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user