Skip to content
Snippets Groups Projects
Commit f9bd08ed authored by t.knopff's avatar t.knopff
Browse files

Merge branch 'bug_fixes' into 'develop'

Fix crash if the details tab in the job view is clicked with no jobs present

See merge request !388
parents 7fd79035 925bddd1
No related branches found
No related tags found
1 merge request!388Fix crash if the details tab in the job view is clicked with no jobs present
Pipeline #46216 passed
......@@ -84,7 +84,9 @@ void JobPropertiesWidget::contextMenuEvent(QContextMenuEvent*)
void JobPropertiesWidget::onTextChanged()
{
m_block_update = true;
jobItem()->setComments(m_commentsEditor->toPlainText());
JobItem* item = jobItem();
if (item)
item->setComments(m_commentsEditor->toPlainText());
m_block_update = false;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment