Skip to content

Commit 528a1c6

Browse files
committed
fix method names
1 parent 91c529e commit 528a1c6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

components/charthop/sources/new-group-created/new-group-created.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export default {
2323
methods: {
2424
...common.methods,
2525
getResourceFn() {
26-
return this.charthop.listJobs;
26+
return this.charthop.listGroups;
2727
},
2828
getArgs() {
2929
return {

components/charthop/sources/new-job-created/new-job-created.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export default {
1111
methods: {
1212
...common.methods,
1313
getResourceFn() {
14-
return this.charthop.listGroups;
14+
return this.charthop.listJobs;
1515
},
1616
getSummary(item) {
1717
return `New Job: ${item.id}`;

0 commit comments

Comments
 (0)