Skip to content

Commit

Permalink
fix a bug #3
Browse files Browse the repository at this point in the history
  • Loading branch information
michivonah committed May 7, 2023
1 parent db16731 commit 9189216
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/tickets.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def openTicket(ticketid):
ticketIdField, ticketNameField = st.columns(2)
ticketIdField.text_input('Ticket Nr', ticketid, disabled=True)
ticketName = ticketNameField.text_input('Ticketname', ticketInfo[0][1])
ticketDescription = st.text_area('Description', ticketInfo[0][2])
ticketDescription = st.text_area('Description', ticketInfo[0][2], key="editTicketDesc")
if int(ticketInfo[0][3]) == 1:
ticketClosed = st.checkbox('Ticket closed', False)
else:
Expand Down

0 comments on commit 9189216

Please sign in to comment.