Skip to content

Commit

Permalink
Fix Task Version check
Browse files Browse the repository at this point in the history
  • Loading branch information
ingalls committed Jun 24, 2024
1 parent 955ef1c commit 7ad867e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/web/src/components/Layer/LayerConfig.vue
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ export default {
const task = match[1];
const version = match[2];
const list = await std(`/api/task/${task}`);
const list = await std(`/api/task/raw/${task}`);
if (list.versions.indexOf(version) !== 0) {
this.newTaskVersion = list.versions[0];
Expand Down

0 comments on commit 7ad867e

Please sign in to comment.