Skip to content

Commit

Permalink
added requested changes
Browse files Browse the repository at this point in the history
  • Loading branch information
remko48 committed Oct 1, 2024
1 parent 1f823e4 commit a2c2df3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/modals/Job/EditJob.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { jobStore, navigationStore } from '../../store/store.js'
<NcModal v-if="navigationStore.modal === 'editJob'"
ref="modalRef"
label-id="editJob"
@close="navigationStore.setModal(false)">
@close="closeModal">
<div class="modalContent">
<h2>{{ jobItem?.id ? 'Edit' : 'Add' }} job</h2>
<NcNoteCard v-if="success" type="success">
Expand Down
4 changes: 2 additions & 2 deletions src/views/Job/JobDetails.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@ import { jobStore, navigationStore } from '../../store/store.js'
<div v-if="jobStore.jobLogs?.length">
<NcListItem v-for="(log, i) in jobStore.jobLogs"
:key="log.id + i"
:name="log.createdAt"
:name="log.id"
:bold="false"
:force-display-actions="true">
<template #icon>
<BriefcaseAccountOutline disable-menu
:size="44" />
</template>
<template #subname>
{{ log.createdAt }}
{{ log.created }}
</template>
</NcListItem>
</div>
Expand Down

0 comments on commit a2c2df3

Please sign in to comment.