Allow posting image without body

This commit is contained in:
Dominic Ferrando
2025-04-25 22:38:20 -04:00
parent ccee57caff
commit e3e8f9075f
2 changed files with 17 additions and 6 deletions
+9 -1
View File
@@ -40,7 +40,15 @@ templ NewPostForm(board database.Board, endpoint string, isForThread bool) {
</tr>
<tr class="new-post-form-field">
<th>Comment</th>
<td><textarea id="newPostBody" name="body" required></textarea></td>
<td>
<textarea
id="newPostBody"
name="body"
if isForThread {
required
}
></textarea>
</td>
</tr>
<tr class="new-post-form-field">
<th>File</th>