Skip to content

Commit e80c4e6

Browse files
authored
Broken image path fix
There are images being linked to with src="img/XXXXX" (ex. img/archiving-off). These images are broken, should be linking to "static/img/XXXXX", so I made the change
1 parent f0bf539 commit e80c4e6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sample/Archiving/templates/host.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,15 +69,15 @@ <h3 class="panel-title">Instructions</h3>
6969
<tbody>
7070
<tr>
7171
<td style="vertical-align: middle;">Archiving is started</td>
72-
<td><img src="img/archiving-on-message.png"></td>
72+
<td><img src="static/img/archiving-on-message.png"></td>
7373
</tr>
7474
<tr>
7575
<td style="vertical-align: middle;">Archiving remains on</td>
76-
<td><img src="img/archiving-on-idle.png"></td>
76+
<td><img src="static/img/archiving-on-idle.png"></td>
7777
</tr>
7878
<tr>
7979
<td style="vertical-align: middle;">Archiving is stopped</td>
80-
<td><img src="img/archiving-off.png"></td>
80+
<td><img src="static/img/archiving-off.png"></td>
8181
</tr>
8282
</tbody>
8383
</table>

0 commit comments

Comments
 (0)