Fix type in Deployment export

This commit is contained in:
Douglas Gillespie 2024-01-21 16:25:03 +00:00
parent 98bc7587b5
commit 522253b489

View File

@ -39,8 +39,8 @@ public class DeploymentDataCard extends PamWizardCard {
this.tethysControl = tethysControl;
deploymentHandler = tethysControl.getDeploymentHandler();
ButtonGroup bg = new ButtonGroup();
exportOne = new JRadioButton("Export a single detection document for all data");
exportMany = new JRadioButton("Export separate documents for each ad-hoc recording period");
exportOne = new JRadioButton("Export a single deployment document for all data");
exportMany = new JRadioButton("Export separate deployment documents for each ad-hoc recording period");
bg.add(exportOne);
bg.add(exportMany);