Skip to content

Commit

Permalink
Change title to desiredrole.
Browse files Browse the repository at this point in the history
  • Loading branch information
ssieng-slalom committed Jan 9, 2024
1 parent aaf56ef commit a453543
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion public/template.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
firstname: John
lastname: Doe
title: Software/DevOps Engineer
desiredrole: Software/DevOps Engineer
skills:
- Java / JavaScript / Python
- DevOps & CI/CD best practices
Expand Down
4 changes: 2 additions & 2 deletions src/pptx/profile.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ export default class Profile {
{ text: '\n' }
];

if (profile.title) {
if (profile.desiredrole) {
introText.push(
{ text: `${profile.title}`, options: { fontSize: 14, bold: true, breakLine: true } },
{ text: `${profile.desiredrole}`, options: { fontSize: 14, bold: true, breakLine: true } },
{ text: '\n' }
)
}
Expand Down

0 comments on commit a453543

Please sign in to comment.