Skip to content

Commit

Permalink
Fix typo, hide empty strings
Browse files Browse the repository at this point in the history
  • Loading branch information
labkey-jeckels committed Feb 28, 2025
1 parent 83aa538 commit df6e72f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions query/webapp/dataview/DataViewsPanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -540,8 +540,8 @@ Ext4.define('LABKEY.ext4.DataViewsPanel', {
'<tpl if="this.isValid(data.status)">' +
'<tr><td>Status:</td><td>{[fm.htmlEncode(values.data.status)]}</td></tr>' +
'</tpl>' +
'<tpl if="data.refreshDate != undefined">' +
'<tr><td valign="top">Data Cut Date:</td><td>{[m.htmlEncode(values.data.refreshDate)]}</td></tr>' +
'<tpl if="data.refreshDate != undefined && data.refreshDate != \'\'">' +
'<tr><td valign="top">Data Cut Date:</td><td>{[fm.htmlEncode(values.data.refreshDate)]}</td></tr>' +
'</tpl>' +
'<tpl if="this.isValid(data.description)">' +
'<tr><td valign="top">Description:</td><td>{[fm.htmlEncode(values.data.description)]}</td></tr>' +
Expand Down

0 comments on commit df6e72f

Please sign in to comment.