1
0
Fork 0
mirror of synced 2024-10-03 02:27:06 +13:00

fix table overflow

This commit is contained in:
Peter Clement 2022-07-14 11:43:09 +01:00
parent 9f320601e4
commit 96576714e9
3 changed files with 4 additions and 4 deletions

View file

@ -447,7 +447,7 @@
width: 100%;
border-radius: 0;
display: grid;
overflow: visible;
overflow: auto;
}
/* Header */

View file

@ -30,8 +30,8 @@
$: page = $pageInfo.page
$: fetchUsers(page, search)
$: isProPlan = $auth.user?.license.plan.type === Constants.PlanType.FREE
$: isProPlan = $auth.user?.license.plan.type !== Constants.PlanType.FREE
$: console.log(isProPlan)
$: appUsers =
$users.data?.filter(x => {
return Object.keys(x.roles).find(y => {

View file

@ -19,7 +19,7 @@
}
let appEditor, appEditorPromise
$: console.log($users.data)
$: updateAvailable = clientPackage.version !== $store.version
$: isPublished = app && app?.status === AppStatus.DEPLOYED
$: appEditorId = !app?.updatedBy ? $auth.user._id : app?.updatedBy