fix: refs #6630 resolve conficts
gitea/salix-front/pipeline/head This commit looks good Details

This commit is contained in:
Jorge Penadés 2024-01-10 15:41:00 +01:00
parent 0eb7d0f1b0
commit cdadb57af3
2 changed files with 2 additions and 1 deletions

View File

@ -428,6 +428,7 @@ setLogTree();
:class="{ 'cursor-pointer': userLog.user.id }"
:worker-id="userLog.user.id"
:title="userLog.user.nickname"
size="md"
/>
</template>
</VnUserLink>
@ -666,7 +667,6 @@ setLogTree();
option-label="locale"
:options="actions"
@update:model-value="selectFilter('action')"
@clear="() => selectFilter('action')"
hide-selected
/>
</QItem>

View File

@ -4,6 +4,7 @@ import { useSession } from 'src/composables/useSession';
const $props = defineProps({
workerId: { type: Number, required: true },
description: { type: String, default: null },
size: { type: String, default: 'xl' },
});
const session = useSession();
const token = session.getToken();