Skip to content

Commit 5b68f41

Browse files
committed
Fix wrong CSS class
1 parent 59320aa commit 5b68f41

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

code-image-generator/source_code_final/templates/image.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
{% block content %}
66
<form>
77
{% if image_b64 %}
8-
<div class="code_picture">
8+
<div class="code-picture">
99
<img src="data:image/png;base64,{{ image_b64 | safe }}"
1010
alt="Code Image" />
1111
</div>

code-image-generator/source_code_step_04/templates/image.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
{% block content %}
66
<form>
77
{% if image_b64 %}
8-
<div class="code_picture">
8+
<div class="code-picture">
99
<img src="data:image/png;base64,{{ image_b64 | safe }}"
1010
alt="Code Image" />
1111
</div>

0 commit comments

Comments
 (0)