fix table overflow
This commit is contained in:
parent
9f320601e4
commit
96576714e9
|
@ -447,7 +447,7 @@
|
|||
width: 100%;
|
||||
border-radius: 0;
|
||||
display: grid;
|
||||
overflow: visible;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
/* Header */
|
||||
|
|
|
@ -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 => {
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue