mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
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.
18 lines
398 B
Python
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),
|
|
),
|
|
]
|