Simple solution: do not display in the UI.
This is the case when JSONIPFS is empty
function addOrganisationToTheList(uint256 orgIndex, string memory organisationJSONIPFS) public payable {
organisations[orgIndex].JSONIPFS = organisationJSONIPFS;
klerosOrganisations.addItem{value: msg.value}(organisationJSONIPFS);
emit OrganisationAddedToKleros(organisations[orgIndex].orgGuid, organisations[orgIndex].name, organisations[orgIndex].klerosAddress);
}