Skip to content

Commit

Permalink
Merge pull request #57 from zowe/bugfix/getZoweSchema
Browse files Browse the repository at this point in the history
Fix Regression in Retrieving Schema
  • Loading branch information
1000TurquoisePogs authored Oct 3, 2023
2 parents 6b1abc9 + dab746a commit c746bb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/actions/PlanningActions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export class PlanningActions {
res.on('end', () => {
try {
const parsedData = JSON.parse(data);
ConfigurationStore.setSchema(parse(parsedData));
ConfigurationStore.setSchema(parsedData);
resolve({status: true, details: parsedData});
} catch (error) {
reject({status: false, details: {error}});
Expand Down

0 comments on commit c746bb4

Please sign in to comment.