Skip to content

Commit 5d75b6d

Browse files
Merge pull request #88 from microsoft/psl_demofeedback_ui
fix: UI frame increased and SQL logic updated to show more clients always
2 parents d3dd35a + a0e073f commit 5d75b6d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ClientAdvisor/App/app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1588,7 +1588,7 @@ def get_users():
15881588
cursor.execute(sql_stmt)
15891589
rows = cursor.fetchall()
15901590

1591-
if len(rows) == 0:
1591+
if len(rows) <= 6:
15921592
#update ClientMeetings,Assets,Retirement tables sample data to current date
15931593
cursor = conn.cursor()
15941594
cursor.execute("""select DATEDIFF(d,CAST(max(StartTime) AS Date),CAST(GETDATE() AS Date)) + 3 as ndays from ClientMeetings""")
@@ -1641,4 +1641,4 @@ def get_users():
16411641
if conn:
16421642
conn.close()
16431643

1644-
app = create_app()
1644+
app = create_app()

ClientAdvisor/App/frontend/src/pages/chat/Chat.module.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ html, body {
3535
0px 0px 2px rgba(0, 0, 0, 0.12);
3636
border-radius: 8px;
3737
overflow-y: auto;
38-
max-height: calc(100vh - 300px);
38+
max-height: calc(100vh - 240px);
3939
height: 100vh;
4040
width: 100%;
4141
}

0 commit comments

Comments
 (0)