We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2202a66 commit 6679beaCopy full SHA for 6679bea
projects/fusio-sdk/package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "ngx-fusio-sdk",
3
- "version": "6.0.8",
+ "version": "6.0.9",
4
"description": "SDK to integrate Fusio into an Angular app",
5
"keywords": [
6
"Fusio",
projects/fusio-sdk/src/lib/abstract/form.ts
@@ -80,6 +80,13 @@ export abstract class Form<T> implements OnInit {
80
return this.getService().getLink();
81
}
82
83
+ public getDetailLink(id: any): Array<string>
84
+ {
85
+ const link = this.getService().getLink();
86
+ link.push('' + id)
87
+ return link;
88
+ }
89
+
90
protected abstract getService(): Service<T>;
91
92
protected onLoad(): void
0 commit comments