Skip to content

Commit

Permalink
fix: Restore image caption help text
Browse files Browse the repository at this point in the history
  • Loading branch information
hepplerj committed Sep 17, 2024
1 parent 035def4 commit b695e68
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions denig/migrations/0043_alter_image_caption.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Generated by Django 4.2.13 on 2024-09-17 14:39

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("denig", "0042_image_caption"),
]

operations = [
migrations.AlterField(
model_name="image",
name="caption",
field=models.TextField(
blank=True,
help_text="Captions for the images to provide extra context for the viewer.",
null=True,
verbose_name="Image caption",
),
),
]

0 comments on commit b695e68

Please sign in to comment.