diff --git a/openbis-ipad/openBIS/openBIS/CISDOBDetailViewController.m b/openbis-ipad/openBIS/openBIS/CISDOBDetailViewController.m index 77231ccd949f904b8c14cd19f8e2b5e01000580c..e34e36e2279cbf8ef2c2ab65735477064fd38086 100644 --- a/openbis-ipad/openBIS/openBIS/CISDOBDetailViewController.m +++ b/openbis-ipad/openBIS/openBIS/CISDOBDetailViewController.m @@ -203,7 +203,7 @@ - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath { NSDictionary *properties = [self propertiesAtIndexPath: indexPath]; - NSString *label = [properties valueForKey: @"key"]; + NSString *label = [properties valueForKey: @"label"]; NSString *value = [properties valueForKey: @"value"]; // Font and size obtained from the storyboard @@ -245,7 +245,7 @@ if (!self.detailItem) return; NSDictionary *properties; properties = [self propertiesAtIndexPath: indexPath]; - cell.textLabel.text = [properties valueForKey: @"key"]; + cell.textLabel.text = [properties valueForKey: @"label"]; cell.detailTextLabel.text = [properties valueForKey: @"value"]; }