Update app.py
Browse files
app.py
CHANGED
|
@@ -687,12 +687,6 @@ assignee_list = load_assignees()
|
|
| 687 |
# Application Header
|
| 688 |
st.markdown("<h1 style='font-size: 24px; color: var(--primary-color);'>📋 Task Board</h1>", unsafe_allow_html=True)
|
| 689 |
|
| 690 |
-
# Display storage status notification if using memory storage
|
| 691 |
-
if st.session_state.using_memory_storage:
|
| 692 |
-
st.markdown('<div style="background-color: #fff3cd; color: #856404; padding: 8px; border-radius: 4px; font-size: 12px; margin-bottom: 10px;">Using in-memory storage. Tasks saved but may not persist after app restart.</div>', unsafe_allow_html=True)
|
| 693 |
-
elif TASKS_FILE:
|
| 694 |
-
st.markdown(f'<div style="background-color: #d4edda; color: #155724; padding: 8px; border-radius: 4px; font-size: 12px; margin-bottom: 10px;">Tasks saved to disk at: {TASKS_FILE}</div>', unsafe_allow_html=True)
|
| 695 |
-
|
| 696 |
# Sidebar for new tasks
|
| 697 |
with st.sidebar:
|
| 698 |
st.markdown('<div class="sidebar-title">➕ Add New Task</div>', unsafe_allow_html=True)
|
|
|
|
| 687 |
# Application Header
|
| 688 |
st.markdown("<h1 style='font-size: 24px; color: var(--primary-color);'>📋 Task Board</h1>", unsafe_allow_html=True)
|
| 689 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 690 |
# Sidebar for new tasks
|
| 691 |
with st.sidebar:
|
| 692 |
st.markdown('<div class="sidebar-title">➕ Add New Task</div>', unsafe_allow_html=True)
|