Compare commits

...
Author SHA1 Message Date
tdgao 7d6c4c43d6 fix: only below modal for backups 2026-04-27 17:25:43 -06:00
tdgao cabb0e2da9 fix: popover action bar behind modal 2026-04-27 17:09:37 -06:00
2 changed files with 3 additions and 1 deletions
@@ -6,13 +6,14 @@ import { useModalStack } from '../../composables/modal-stack'
const props = defineProps<{
shown: boolean
ariaLabel?: string
belowModal?: boolean
}>()
const toolbarEl = ref<HTMLElement | null>(null)
const compact = ref(false)
const { stackCount } = useModalStack()
const zIndex = computed(() => 100 + stackCount.value * 10 + 8)
const zIndex = computed(() => 100 + stackCount.value * 10 + 8 + (!props.belowModal ? 1 : 0))
function checkCompact() {
const el = toolbarEl.value
@@ -160,6 +160,7 @@
</div>
<FloatingActionBar
below-modal
:shown="selectedIds.size > 0 || isBulkOperating"
:aria-label="
formatMessage(messages.bulkBarAriaLabel, {