Skip to content

Commit

Permalink
remove / from N/A
Browse files Browse the repository at this point in the history
  • Loading branch information
newswangerd committed Jul 11, 2018
1 parent 161c8b4 commit 74e635c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions galaxyui/src/app/search/search.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -485,8 +485,8 @@ export class SearchComponent implements OnInit, AfterViewInit {
private prepareContent(data: Content[], count: number) {
data.forEach(item => {
if (item.imported === null){
item.imported = "N/A";
} else {
item.imported = "NA";
} else {
item.imported = moment(item.imported).fromNow();
}
item['repository_format'] = item.summary_fields['repository']['format'];
Expand Down

0 comments on commit 74e635c

Please sign in to comment.