Skip to content

Commit

Permalink
fix: fix spoolman list (comment & location) (#1693)
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Dej <[email protected]>
  • Loading branch information
meteyou authored Dec 25, 2023
1 parent e4ffa6c commit 3108389
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/components/dialogs/SpoolmanChangeSpoolDialogRow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@
<div class="text--disabled mb-1">#{{ id }} | {{ vendor }}</div>
<v-list-item-title class="mb-1">
<span class="text--filament">{{ name }}</span>
<template v-if="location">
<br />
<small>{{ $t('Panels.SpoolmanPanel.Location') }}: {{ location }}</small>
</template>
<template v-if="spool.comment">
<br />
<small>{{ spool.comment }}</small>
</template>
</v-list-item-title>
</v-list-item-content>
</v-list-item>
<template v-if="location">
<br />
{{ $t('Panels.SpoolmanPanel.Location') }}: {{ location }}
</template>
<template v-if="spool.comment">
<br />
{{ spool.comment }}
</template>
</td>
<td class="text-center text-no-wrap">{{ material }}</td>
<td class="text-right text-no-wrap">{{ last_used }}</td>
Expand Down

0 comments on commit 3108389

Please sign in to comment.