Skip to content

Commit b022afa

Browse files
committed
rollback for fixing tests
1 parent cc13fe7 commit b022afa

File tree

4 files changed

+5
-10
lines changed

4 files changed

+5
-10
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ jobs:
123123
uses: actions/setup-node@v4
124124
with:
125125
node-version-file: .node-version
126-
- name: Installing Chrome for Puppeteer test
126+
- name: Installing Chrome for Puppeteer testing
127127
run: npx puppeteer browsers install chrome
128128
- name: Set up Ruby
129129
uses: ruby/setup-ruby@v1

app/controllers/invitations_controller.rb

+2-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ def invite_user
6767
end
6868

6969
def pdf
70-
Grover.new(invitation.content).to_pdf
70+
# print_background is necessary to print the css background color
71+
Grover.new(invitation.content, format: "A4", print_background: true).to_pdf
7172
end
7273

7374
def pdf_filename

app/controllers/notifications_controller.rb

+2-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ def notify_participation
3636
end
3737

3838
def pdf
39-
Grover.new(notify_participation.notification.content).to_pdf
39+
# print_background is necessary to print the css background color
40+
Grover.new(notify_participation.notification.content, format: "A4", print_background: true).to_pdf
4041
end
4142

4243
def pdf_filename

config/initializers/grover.rb

-7
This file was deleted.

0 commit comments

Comments
 (0)