fix(VnNotes): refs #6336 VnAvatar #313

Merged
alexm merged 2 commits from 6336_fix_vn_notes_VnAvatar into dev 2024-04-23 07:24:42 +00:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 952d5bf543 - Show all commits

View File

@ -32,7 +32,7 @@ async function insert() {
<template>
<QCard class="q-pa-xs q-mb-xl full-width" v-if="$props.addNote">
<QCardSection horizontal>
<VnAvatar :descriptor="false" :worker-id="1" size="md" />
<VnAvatar :worker-id="currentUser.id" size="md" />
<div class="full-width row justify-between q-pa-xs">
<VnUserLink :name="t('New note')" :worker-id="currentUser.id" />
{{ t('globals.now') }}

View File

@ -31,7 +31,7 @@ const entityId = computed(() => {
});
const worker = ref();
const filter = { where: { id: route.params.id}};
const filter = { where: { id: entityId } };
const sip = ref(null);
@ -60,7 +60,7 @@ const setData = (entity) => {
<CardDescriptor
module="Worker"
data-key="workerData"
:url="`Workers/summary`"
url="Workers/summary"
:filter="filter"
:title="data.title"
:subtitle="data.subtitle"