Skip to content

Commit d1ca020

Browse files
committed
IRSA-782: update error message
1 parent 816c9ec commit d1ca020

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/firefly/js/templates/lightcurve/ptf/PTFMissionOptions.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ export function isValidPTFTable() {
8383
return {errorMsg: undefined, isValid: true};
8484
}
8585
else {
86-
const errorMsg = `The uploaded table is not valid. The PTF option requires pid.
87-
Please select the "Other" upload option for tables that do not meet these requirements.`;
86+
const errorMsg = `The uploaded table is not valid. The PTF option requires pid.
87+
Please select one of the other upload options`;
8888
return {errorMsg, isValid:false};
8989
}
9090
}

src/firefly/js/templates/lightcurve/wise/WiseMissionOptions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ export function isValidWiseTable(){
103103
}
104104
else {
105105
const errorMsg=`The uploaded table is not valid. The WISE option requires frame_id, or source_id, or both scan_id and frame_num.
106-
Please select the "Other" upload option for tables that do not meet these requirements.`;
106+
Please select one of the other upload options`;
107107
return {errorMsg, isValid:false};
108108
}
109109
}

0 commit comments

Comments
 (0)