This commit is contained in:
parent
d0149d8cbe
commit
df907a7280
|
@ -213,7 +213,7 @@ function getLogTree(data) {
|
||||||
}
|
}
|
||||||
nLogs++;
|
nLogs++;
|
||||||
modelLog.logs.push(log);
|
modelLog.logs.push(log);
|
||||||
|
modelLog.summaryId = modelLog.logs[0].summaryId;
|
||||||
// Changes
|
// Changes
|
||||||
const notDelete = log.action != 'delete';
|
const notDelete = log.action != 'delete';
|
||||||
const olds = (notDelete ? log.oldInstance : null) || {};
|
const olds = (notDelete ? log.oldInstance : null) || {};
|
||||||
|
@ -464,9 +464,12 @@ onUnmounted(() => {
|
||||||
>
|
>
|
||||||
{{ t(modelLog.modelI18n) }}
|
{{ t(modelLog.modelI18n) }}
|
||||||
</QChip>
|
</QChip>
|
||||||
<span class="model-id" v-if="modelLog.summaryId"
|
|
||||||
>#{{ modelLog.summaryId }}</span
|
<span
|
||||||
>
|
class="model-id q-mr-xs"
|
||||||
|
v-if="modelLog.summaryId"
|
||||||
|
v-text="`#${modelLog.summaryId}`"
|
||||||
|
/>
|
||||||
<span class="model-value" :title="modelLog.showValue">
|
<span class="model-value" :title="modelLog.showValue">
|
||||||
{{ modelLog.showValue }}
|
{{ modelLog.showValue }}
|
||||||
</span>
|
</span>
|
||||||
|
|
Loading…
Reference in New Issue