Skip to content
This repository has been archived by the owner on Nov 19, 2024. It is now read-only.

Commit

Permalink
hide the map field in develop until its done properly
Browse files Browse the repository at this point in the history
  • Loading branch information
danielgalasko committed Apr 15, 2018
1 parent 909e3df commit def6cf9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion AfrikaBurn/BurnElementDetailViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@ extension BurnElementDetailViewController: UITableViewDataSource {
case .longblurb: return hasText(element.longBlurb)
case .scheduledActivivies: return hasText(element.scheduledActivities)
case .title: return true
case .map: return element.location != nil
case .map:
return false//element.location != nil
}
})
}
Expand Down

0 comments on commit def6cf9

Please sign in to comment.