OpenSlides/openslides/motions/migrations/0030_state_css_classes_1.py
GabrielMeyer bb55110245 Fixes dynamic growing cells in workflows
- The cells in the table of a workflow are dynamically growing
- The colors of the states get new labels
- If multiple selection in motion-list is active, the button to change the view won't be seen
2019-07-23 15:01:35 +02:00

16 lines
407 B
Python

# Generated by Finn Stutzenstein on 2019-07-17 08:32
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [("motions", "0029_motioncommentsection_weight")]
operations = [
migrations.AlterField(
model_name="state",
name="css_class",
field=models.CharField(default="lightblue", max_length=255),
)
]