1
0
Fork 0
mirror of synced 2024-07-10 16:55:46 +12:00

Merge branch 'master' into budi-7468-save-row-action-will-attempt-to-save-the-image-data-of-the

This commit is contained in:
Mel O'Hagan 2023-09-12 10:29:39 +01:00
commit fab15e57d1
4 changed files with 3 additions and 12 deletions

View file

@ -1,5 +1,5 @@
{
"version": "2.10.3",
"version": "2.10.4",
"npmClient": "yarn",
"packages": [
"packages/*"

View file

@ -52,11 +52,6 @@ export const BuilderRoleDescriptions = [
icon: "User",
label: "App user - Only has access to published apps",
},
{
value: BudibaseRoles.Developer,
icon: "Hammer",
label: "Developer - Access to the app builder",
},
{
value: BudibaseRoles.Admin,
icon: "Draw",

@ -1 +1 @@
Subproject commit 4638ae916e55ce89166095578cbd01745d0ee9ee
Subproject commit 961d683794442f615468d44b684e5a94633109eb

View file

@ -61,11 +61,7 @@ export async function getInheritablePermissions(
export async function allowsExplicitPermissions(resourceId: string) {
if (isViewID(resourceId)) {
const allowed = await features.isViewPermissionEnabled()
const minPlan = !allowed
? env.SELF_HOSTED
? PlanType.BUSINESS
: PlanType.PREMIUM
: undefined
const minPlan = !allowed ? PlanType.BUSINESS : undefined
return {
allowed,