回答編集履歴

1

2022/01/17 05:06

投稿

shinoharat
shinoharat

スコア1676

test CHANGED
@@ -1,14 +1 @@
1
- `move_down 10` が each の外側にあるため、
2
- `text quotation.product_name` が同じ位置への上書きとなっている気がします。
3
-
4
- 以下のように `move_down 10` を each の内側に移動させてはどうでしょうか?
5
-
6
- ```diff
7
- bounding_box([89, 535], width: 310, height: 65) do
8
- - move_down 10
9
- @quotation.each do |quotation|
10
- + move_down 10
1
+ (投稿内容に誤りがあったため削除しました)
11
- text quotation.product_name, size: 16, align: :left
12
- end
13
- end
14
- ```