mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-28 16:06:40 +01:00
Adds image tag and fixes #1582
This commit is contained in:
@@ -1,13 +1,15 @@
|
||||
<template>
|
||||
<div class="columns is-marginless has-text-weight-bold is-family-monospace">
|
||||
<span class="column is-ellipsis">{{ value }}</span>
|
||||
<span class="column is-ellipsis"
|
||||
>{{ container.name }} <span class="tag is-dark">{{ container.image }}</span></span
|
||||
>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
props: {
|
||||
value: String,
|
||||
container: Object,
|
||||
},
|
||||
name: "ContainerTitle",
|
||||
};
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<template v-slot:header v-if="showTitle">
|
||||
<div class="mr-0 columns is-vcentered is-hidden-mobile">
|
||||
<div class="column is-clipped">
|
||||
<container-title :value="container.name" @close="$emit('close')"></container-title>
|
||||
<container-title :container="container" @close="$emit('close')"></container-title>
|
||||
</div>
|
||||
<div class="column is-clipped">
|
||||
<container-stat :stat="container.stat" :state="container.state"></container-stat>
|
||||
|
||||
Reference in New Issue
Block a user