Browse Source

fix(gui): correction in if condition

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/4134/head
Pranav C 2 years ago
parent
commit
99ee8a0bc1
  1. 2
      packages/nc-gui/pages/account/index/users/[[nestedPage]].vue

2
packages/nc-gui/pages/account/index/users/[[nestedPage]].vue

@ -13,7 +13,7 @@ const { isUIAllowed } = useUIPermission()
>
<LazyAccountResetPassword />
</template>
<template v-else-if="$route.params.nestedPage === 'settings' && !isUIAllowed('superAdminUserManagement')">
<template v-else-if="$route.params.nestedPage === 'settings'">
<LazyAccountSignupSettings />
</template>
<template v-else-if="isUIAllowed('superAdminUserManagement')">

Loading…
Cancel
Save