aboutsummaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/person/index.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/modules/person/index.ts b/src/modules/person/index.ts
index de408091..f5f4778c 100644
--- a/src/modules/person/index.ts
+++ b/src/modules/person/index.ts
@@ -336,7 +336,9 @@ export class PersonModule extends ModuleBase {
* @since 8.0.0
*/
jobTitle(): string {
- return `${this.jobDescriptor()} ${this.jobArea()} ${this.jobType()}`;
+ return this.faker.helpers.fake(
+ this.faker.definitions.person.job_title_pattern
+ );
}
/**