Skip to content

Commit 1d95a00

Browse files
Improvement: Forced "groupName" to CapitalCase
1 parent bf0080b commit 1d95a00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/models/api.model.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export class ApiModel implements PhysycalFile {
2323
}
2424

2525
get groupName(): string {
26-
return this.tags[0]?.length ? this.tags[0] : null;
26+
return this.tags[0]?.length ? capital(this.tags[0]) : null;
2727
}
2828

2929
get models(): ModelAttributessModel[] {

0 commit comments

Comments
 (0)