Skip to content

Commit

Permalink
Fix #952
Browse files Browse the repository at this point in the history
  • Loading branch information
mgubaidullin committed Oct 23, 2023
1 parent 3583d1e commit c475979
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ export function DslPropertyField(props: Props) {

function isUriReadOnly(property: PropertyMeta): boolean {
const dslName: string = props.element?.dslName || '';
return property.name === 'uri' && !['ToDynamicDefinition', 'WireTapDefinition'].includes(dslName)
return property.name === 'uri' && !['ToDynamicDefinition', 'WireTapDefinition', 'InterceptFromDefinition'].includes(dslName)
}

function selectInfrastructure(value: string) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ export function DslPropertyField(props: Props) {

function isUriReadOnly(property: PropertyMeta): boolean {
const dslName: string = props.element?.dslName || '';
return property.name === 'uri' && !['ToDynamicDefinition', 'WireTapDefinition'].includes(dslName)
return property.name === 'uri' && !['ToDynamicDefinition', 'WireTapDefinition', 'InterceptFromDefinition'].includes(dslName)
}

function selectInfrastructure(value: string) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ export function DslPropertyField(props: Props) {

function isUriReadOnly(property: PropertyMeta): boolean {
const dslName: string = props.element?.dslName || '';
return property.name === 'uri' && !['ToDynamicDefinition', 'WireTapDefinition'].includes(dslName)
return property.name === 'uri' && !['ToDynamicDefinition', 'WireTapDefinition', 'InterceptFromDefinition'].includes(dslName)
}

function selectInfrastructure(value: string) {
Expand Down

0 comments on commit c475979

Please sign in to comment.