Files
zulip/zerver/migrations/0555_alter_onboardingstep_onboarding_step.py
Prakhar Pratyush 35380b095f compose: Show banner to explain non interleaved view messages fading.
In a non interleaved view when composing a message to another
conversation we fade messages which the user is not replying to,
to reduce the chance they send a message to a recipient they didn't
intend to. Also, it reduces the visual/cognitive processing required
to figure out where their message is going to go.

But, it's not necessarily clear to users that what the
fading means, so this commit adds a one-time compose banner
to explain what's going on the first time this comes up.

Fixes part of #29076.
2024-07-16 13:52:29 -07:00

18 lines
398 B
Python

# Generated by Django 5.0.5 on 2024-04-23 07:16
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("zerver", "0554_imageattachment"),
]
operations = [
migrations.AlterField(
model_name="onboardingstep",
name="onboarding_step",
field=models.CharField(max_length=40),
),
]