Skip to content

Commit

Permalink
fix(ui): typo groups associations (#650)
Browse files Browse the repository at this point in the history
  • Loading branch information
robertsLando authored Feb 19, 2021
1 parent e238ae1 commit 80163d1
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/components/nodes-table/AssociationGroups.vue
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@
md="4"
>
<v-text-field
v-model.number="group.targetInstance"
label="Channel ID"
hint="Target node channel ID"
v-model.number="group.endpoint"
label="Endpoint"
hint="Target node endpoint"
type="number"
/>
</v-col>
Expand Down Expand Up @@ -164,8 +164,8 @@ export default {
const association = { nodeId: target }
if (g.group.multiChannel && g.targetInstance >= 0) {
association.endpoint = g.targetInstance
if (g.group.multiChannel && g.endpoint >= 0) {
association.endpoint = g.endpoint
}
if (g && g.node && target) {
Expand All @@ -187,8 +187,8 @@ export default {
if (isNaN(target)) return
association = { nodeId: target }
if (g.group.multiChannel && g.targetInstance >= 0) {
association.endpoint = g.targetInstance
if (g.group.multiChannel && g.endpoint >= 0) {
association.endpoint = g.endpoint
}
}
Expand Down

0 comments on commit 80163d1

Please sign in to comment.