Skip to content

Commit

Permalink
fix(bug): Get params at quest level (#719)
Browse files Browse the repository at this point in the history
  • Loading branch information
cmp5987 authored Mar 21, 2024
1 parent 72be65a commit 3083961
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 9 deletions.
6 changes: 3 additions & 3 deletions tavern/internal/www/build/asset-manifest.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tavern/internal/www/build/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ const AccessHostActivityTable = ({ hostActivity, term }: { hostActivity: any, te
if (item?.id === "undefined") {
return null;
}
console.log(item);
navigation(`/hosts`, {
state: [{
'label': item?.original?.tag,
Expand Down
2 changes: 2 additions & 0 deletions tavern/internal/www/src/utils/queries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ export const GET_QUEST_QUERY = gql`
node{
id
name
parameters
lastUpdatedTask:tasks(first: $firstTask, orderBy: $orderByTask){
edges{
node{
Expand Down Expand Up @@ -177,6 +178,7 @@ export const GET_QUEST_BY_ID_QUERY = gql`
node{
id
name
parameters
lastUpdatedTask:tasks(first: $firstTask, orderBy: $orderByTask){
edges{
node{
Expand Down

0 comments on commit 3083961

Please sign in to comment.