Update pankow to v4 to fix TableView bug

This commit is contained in:
Johannes Zellner
2026-02-12 20:28:04 +01:00
parent e76d4b3474
commit c5cf8eef1a
18 changed files with 95 additions and 97 deletions
+2 -2
View File
@@ -151,10 +151,10 @@ onMounted(async () => {
<br/>
<TableView :model="filteredDomains" :columns="columns" :busy="busy" style="max-height: 450px;" :placeholder="$t(search ? 'domains.noMatchesPlaceholder' : 'domains.emptyPlaceholder')">
<template #provider="domain">
<template #provider="{ item:domain }">
{{ DomainsModel.prettyProviderName(domain.provider) }}
</template>
<template #actions="domain">
<template #actions="{ item:domain }">
<ActionBar :actions="createActionMenu(domain)" />
</template>
</TableView>