Skip to content

Commit 91bb1c7

Browse files
committed
bug fix for variable use
selectorLabel -> [selectorLabel]
1 parent fe263af commit 91bb1c7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

AssociationTableControl/AssociationTableControl/AssociationTableControl/ControlManifest.Input.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest>
3-
<control namespace="CRMVet" constructor="AssociationTableControl" version="0.0.30" display-name-key="Association Table Control" description-key="Control for Association (aka joint or N:N) tables" control-type="standard" preview-image="img/preview.png">
3+
<control namespace="CRMVet" constructor="AssociationTableControl" version="0.0.31" display-name-key="Association Table Control" description-key="Control for Association (aka joint or N:N) tables" control-type="standard" preview-image="img/preview.png">
44
<!-- This property node defines configuration required for this PCF. Configuration is done as a mapping to Dataverse fields or hard-coded expressions -->
55
<property name="fieldValue" display-name-key="Field Logical Name" description-key="Property_Desc_Key" of-type="Multiple" usage="bound" required="true" />
66
<property name="selectorTable" display-name-key="Selector Table" description-key="Name for the Selector Table to show records to choose from in UI. Example: crmvet_table2" of-type="SingleLine.Text" usage="input" required="true" default-value="" />

AssociationTableControl/AssociationTableControl/AssociationTableControl/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ export class AssociationTableControl implements ComponentFramework.StandardContr
201201

202202
var data =
203203
{
204-
selectorLabel: targetInput.name,
204+
[selectorLabel]: targetInput.name,
205205
[lookupDataTo]: "/" + thatEntity + "(" + targetInput.id + ")",
206206
[lookupDataFrom]: "/" + thisEntityPlural + "(" + recordId + ")"
207207
}

AssociationTableControl/Solutions/Other/Solution.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<LocalizedName description="Association Table Control" languagecode="1033" />
99
</LocalizedNames>
1010
<Descriptions />
11-
<Version>1.0.0.1</Version>
11+
<Version>1.0.0.2</Version>
1212
<!-- Solution Package Type: Unmanaged(0)/Managed(1)/Both(2)-->
1313
<Managed>2</Managed>
1414
<Publisher>

0 commit comments

Comments
 (0)