Skip to content

Commit f3590a7

Browse files
committed
fix: wrong method reference
1 parent ec26073 commit f3590a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/data/src/entry-pop/entry-pop.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export class EntryPopComponent extends PopComponent implements OnInit {
9393

9494
/** Initialize the allowed methods to determine which buttons should be shown. */
9595
ngOnInit() {
96-
this.auth.getAllowedMethods(this.model, this.config.methods)
96+
this.auth.getAllowedModelMethods(this.model, this.config.methods)
9797
.then((methods) => {
9898
this.config.methods = methods;
9999
});

0 commit comments

Comments
 (0)