feat: wire feedback button into app.py sidebar
This commit is contained in:
parent
14c47452c0
commit
015f77a40a
1 changed files with 2 additions and 0 deletions
|
|
@ -21,6 +21,7 @@ IS_DEMO = os.environ.get("DEMO_MODE", "").lower() in ("1", "true", "yes")
|
||||||
|
|
||||||
import streamlit as st
|
import streamlit as st
|
||||||
from scripts.db import DEFAULT_DB, init_db, get_active_tasks
|
from scripts.db import DEFAULT_DB, init_db, get_active_tasks
|
||||||
|
from app.feedback import inject_feedback_button
|
||||||
import sqlite3
|
import sqlite3
|
||||||
|
|
||||||
st.set_page_config(
|
st.set_page_config(
|
||||||
|
|
@ -164,5 +165,6 @@ with st.sidebar:
|
||||||
_task_indicator()
|
_task_indicator()
|
||||||
st.divider()
|
st.divider()
|
||||||
st.caption(f"Peregrine {_get_version()}")
|
st.caption(f"Peregrine {_get_version()}")
|
||||||
|
inject_feedback_button()
|
||||||
|
|
||||||
pg.run()
|
pg.run()
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue