Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
justinehell committed Sep 12, 2023
1 parent 957f2f8 commit 95a4a95
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/components/inputs/ArrayInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ function initOptions() {
})),
}, {
type: 'category',
name: 'variable',
name: 'variables',
children,
}];
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/inputs/LinkInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ function initOptions() {
})),
}, {
type: 'category',
name: 'variable',
name: 'variables',
children,
}];
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/inputs/ReferenceInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ function initOptions() {
})),
}, {
type: 'category',
name: 'variable',
name: 'variables',
children,
}];
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/inputs/SelectInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ function initOptions() {
})),
}, {
type: 'category',
name: 'variable',
name: 'variables',
children,
}];
}
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/components/inputs/ArrayInput.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ describe('Test component: ArrayInput', () => {
value: 'value2',
}],
}, {
name: 'variable',
name: 'variables',
type: 'category',
children: [{
name: 'variable',
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/components/inputs/LinkInput.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ describe('Test component: LinkInput', () => {
value: 'componentName',
}],
}, {
name: 'variable',
name: 'variables',
type: 'category',
children: [{
name: 'variable',
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/components/inputs/ReferenceInput.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ describe('Test component: ReferenceInput', () => {
value: 'ref',
}],
}, {
name: 'variable',
name: 'variables',
type: 'category',
children: [{
name: 'variable',
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/components/inputs/SelectInput.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ describe('Test component: SelectInput', () => {
value: 'value2',
}],
}, {
name: 'variable',
name: 'variables',
type: 'category',
children: [{
name: 'variable',
Expand Down

0 comments on commit 95a4a95

Please sign in to comment.