mirror of
https://github.com/rustfs/console.git
synced 2026-09-21 06:06:37 +08:00
- Add checkbox to toggle showing deleted objects - Update UI layout to include search and show deleted option - Add i18n translations for 'Show Deleted Objects' in en-US, tr-TR, and zh-CN
12 lines
333 B
Vue
12 lines
333 B
Vue
<template>
|
|
<div class="sticky bg-background top-0 z-10 flex flex-col justify-between gap-2 lg:flex-row">
|
|
<div class="space-y-2">
|
|
<slot />
|
|
<slot name="description"></slot>
|
|
</div>
|
|
<div class="flex flex-1 flex-wrap items-center justify-end gap-2">
|
|
<slot name="actions" />
|
|
</div>
|
|
</div>
|
|
</template>
|