1
0
Fork 0
mirror of synced 2024-10-05 12:34:50 +13:00

Removed debugging naming from readable bindings

This commit is contained in:
Dean 2024-01-26 17:05:01 +00:00
parent d45642da98
commit 8f153eef65

View file

@ -364,6 +364,7 @@ const getContextBindings = (asset, componentId) => {
* Generates a set of bindings for a given component context
*/
const generateComponentContextBindings = (asset, componentContext) => {
console.log("Hello ")
const { component, definition, contexts } = componentContext
if (!component || !definition || !contexts?.length) {
return []
@ -456,15 +457,11 @@ const generateComponentContextBindings = (asset, componentContext) => {
context,
definition
)
// Temporarily append scope for debugging
const scope = `[${(context.scope || "global").toUpperCase()}]`
// Create the binding object
bindings.push({
type: "context",
runtimeBinding,
readableBinding: `${scope} ${readableBinding}`,
readableBinding: `${readableBinding}`,
// Field schema and provider are required to construct relationship
// datasource options, based on bindable properties
fieldSchema,
@ -475,7 +472,7 @@ const generateComponentContextBindings = (asset, componentContext) => {
category: bindingCategory.category,
icon: bindingCategory.icon,
display: {
name: `${scope} ${fieldSchema.name || key}`,
name: `${fieldSchema.name || key}`,
type: fieldSchema.type,
},
})