Hide broadcast add button in conference history detail

This commit is contained in:
Christophe Deschamps 2024-02-14 12:32:41 +01:00
parent 98da1d956f
commit 621eca1893

View file

@ -186,6 +186,7 @@ import linphonesw
cell.selectionStyle = .none
cell.scheduleConfParticipantAddress = tableView.tag == 1 ? data.conferenceInfo.participants.filter {$0.weakEqual(address2: data.conferenceInfo.organizer!)}.first : data.conferenceInfo.participants[indexPath.row]
cell.limeBadge.isHidden = true
cell.addButton.isHidden = true
return cell
}