bb55110245
- 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
16 lines
407 B
Python
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),
|
|
)
|
|
]
|