mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-13 16:58:36 +01:00
new selfhosted version
This commit is contained in:
17
dashboard/components/admin/backend/Operation.vue
Normal file
17
dashboard/components/admin/backend/Operation.vue
Normal file
@@ -0,0 +1,17 @@
|
||||
<script lang="ts" setup>
|
||||
|
||||
defineProps<{ operation: any }>();
|
||||
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Card>
|
||||
<CardContent class="flex items-center gap-2">
|
||||
<div class="size-3 bg-gray-300 rounded-full"></div>
|
||||
<div class="w-[20rem]"> {{ operation.shard }} </div>
|
||||
<div class="w-[20rem]"> {{ operation.ns }} </div>
|
||||
<div class="w-[10rem]"> {{ formatTime(operation.totalOperationTimeElapsedSecs * 1000) }} </div>
|
||||
<div class> {{ operation.donorState ?? 'NO_STATE' }} </div>
|
||||
</CardContent>
|
||||
</Card>
|
||||
</template>
|
||||
Reference in New Issue
Block a user