7355-accountMigration2 #619

Merged
carlossa merged 9 commits from 7355-accountMigration2 into dev 2024-08-13 13:10:39 +00:00
3 changed files with 8 additions and 20 deletions
Showing only changes of commit 40c3ba15e6 - Show all commits

View File

@ -123,13 +123,6 @@ const deleteAcl = async ({ id }) => {
</script>
<template>
<FetchData
url="VnRoles"
:filter="{ fields: ['name'], order: 'name ASC' }"
@on-fetch="(data) => (rolesOptions = data)"
auto-load
/>
<VnSearchbar
data-key="AccountAcls"
url="ACLs"

View File

@ -76,16 +76,12 @@ const exprBuilder = (param, value) => {
</script>
<template>
<template v-if="stateStore.isHeaderMounted()">
<Teleport to="#searchbar">
<VnSearchbar
data-key="Roles"
:expr-builder="exprBuilder"
:label="t('role.searchRoles')"
:info="t('role.searchInfo')"
/>
</Teleport>
</template>
<VnSearchbar
data-key="Roles"
:expr-builder="exprBuilder"
:label="t('role.searchRoles')"
:info="t('role.searchInfo')"
/>
<VnTable
ref="tableRef"
data-key="Roles"

View File

@ -22,9 +22,8 @@ const searchBarDataKeys = {
<VnCard
data-key="Role"
:descriptor="RoleDescriptor"
:search-data-key="searchBarDataKeys[routeName]"
:search-custom-route-redirect="customRouteRedirectName"
:search-redirect="!!customRouteRedirectName"
search-data-key="AccountRoles"
search-url="VnRoles"
:searchbar-label="t('role.searchRoles')"
:searchbar-info="t('role.searchInfo')"
/>