Skip to content

Commit d618c82

Browse files
committed
style: update style
1 parent e86c0d6 commit d618c82

File tree

2 files changed

+30
-1
lines changed

2 files changed

+30
-1
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
"""empty message
2+
3+
Revision ID: 5755c0b95839
4+
Revises: e408f8766753
5+
Create Date: 2025-12-02 13:46:06.905576
6+
7+
"""
8+
from alembic import op
9+
import sqlalchemy as sa
10+
11+
revision = '5755c0b95839'
12+
down_revision = 'e408f8766753'
13+
branch_labels = None
14+
depends_on = None
15+
16+
17+
def upgrade():
18+
op.add_column('chat', sa.Column('brief_generate', sa.Boolean(), nullable=True))
19+
op.execute("UPDATE chat SET brief_generate = true WHERE brief_generate IS NULL")
20+
with op.batch_alter_table('chat') as batch_op:
21+
batch_op.alter_column('brief_generate',
22+
server_default=sa.text('false'),
23+
nullable=False)
24+
# ### end Alembic commands ###
25+
26+
27+
def downgrade():
28+
op.drop_column('chat', 'brief_generate')
29+
# ### end Alembic commands ###

frontend/src/views/chat/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1197,7 +1197,7 @@ onMounted(() => {
11971197
}
11981198
11991199
.quick_question {
1200-
width: calc(100% - 2px);
1200+
width: 100px;
12011201
position: absolute;
12021202
margin-left: 1px;
12031203
margin-top: 1px;

0 commit comments

Comments
 (0)