Skip to content

Commit

Permalink
Merge branch 'master' of gitlab.com:yawik/jobwizard
Browse files Browse the repository at this point in the history
  • Loading branch information
tmcdos committed Oct 4, 2021
2 parents 455c26a + 6b6037a commit e6c1474
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ In development.
## Installation

```
git clone https://gitlab.com/yawik/applicationform.git
git clone https://gitlab.com/yawik/jobwizard.git
cd wizard
yarn install
yarn dev
Expand All @@ -43,8 +43,8 @@ It's possible to show a toolbar with the Logo and a navigation drawer by using q

## Demo

https://yawik.gitlab.io/jobwizard/de
http://jobwizard.yawik.org/

## Documentation

Currently in development.
Currently in development.
3 changes: 2 additions & 1 deletion src/pages/DialogPreview.vue
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ export default
${this.htmlLogo}
<div style="padding-left: 16px;">
<h2>${this[GET_FORM].organization || ''}</h2>
<h1 align="center">${this[GET_FORM].jobTitle}</h1>
<div class="flex items-center">
<div style="padding-right: 16px;">${this.htmlCountry}</div>
<div>${[this[GET_FORM].country?.label || '', this[GET_FORM].location || ''].filter(val => val).join(', ')}</div>
Expand All @@ -180,7 +181,7 @@ export default
${this.htmlApplyEmail}
</table>
${this.htmlHeaderImage}
<h1 align="center">${this[GET_FORM].jobTitle}</h1>
<h5 align="center">${this[GET_FORM].reference ? 'Ref: ' + this[GET_FORM].reference : ''}</h5>
<!-- Parameters -->
<div style="padding: 0 24px;">
Expand Down
2 changes: 2 additions & 0 deletions src/pages/steps/StepTwo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
</q-file>
<div class="row">
<img v-if="imageLogo" :src="imageLogo" class="img_logo q-mx-auto">
<h4>{{ GET_FORM.organization || '' }}</h4>
<h3 align="center">{{ GET_FORM.jobTitle }}</h3>
</div>

<!-- Header image -->
Expand Down

0 comments on commit e6c1474

Please sign in to comment.