Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0765174 commit 1b7d20bCopy full SHA for 1b7d20b
src/utils/parse.ts
@@ -150,7 +150,7 @@ export function parse(params: ParseParams): any {
150
...mdStep,
151
};
152
153
- const stepSetupKey = `${step.id}Q`;
+ const stepSetupKey = `${step.id}:T`;
154
if (params.commits[stepSetupKey]) {
155
if (!step.setup) {
156
step.setup = {
@@ -160,7 +160,7 @@ export function parse(params: ParseParams): any {
160
step.setup.commits = params.commits[stepSetupKey];
161
}
162
163
- const stepSolutionKey = `${step.id}A`;
+ const stepSolutionKey = `${step.id}:S`;
164
if (params.commits[stepSolutionKey]) {
165
if (!step.solution) {
166
step.solution = {
0 commit comments