* Trims top events depending on scroll status * Cleans up models and adds better OOP around logging events * Adds log entries being skipped component * Fixes type errors * Fixes tets * Styles skipping logs
18 lines
501 B
Vue
18 lines
501 B
Vue
<template>
|
|
<div class="columns is-marginless has-text-weight-bold is-family-monospace">
|
|
<span class="column is-ellipsis">
|
|
{{ container.name }}
|
|
<span class="tag is-dark">{{ container.image.replace(/@sha.*/, "") }}</span>
|
|
</span>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { type Container } from "@/types/Container";
|
|
import { type ComputedRef } from "vue";
|
|
|
|
const container = inject("container") as ComputedRef<Container>;
|
|
</script>
|
|
|
|
<style lang="scss" scoped></style>
|