Skip to content

Commit

Permalink
chore: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
tschoffelen committed Oct 6, 2024
1 parent 3b6fc6c commit d8749da
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"packageManager": "[email protected]",
"scripts": {
"deploy": "yarn build && yarn turbo deploy --env-mode=loose --color",
"auto-trace": "yarn turbo auto-trace --env-mode=loose --color",
"auto-trace": "cd packages/api && yarn auto-trace",
"build": "yarn turbo build --env-mode=loose --color",
"test": "yarn turbo test --env-mode=loose --color",
"start": "turbo dev --env-mode=loose --color",
Expand Down
6 changes: 5 additions & 1 deletion packages/dashboard/src/routes/invocations/table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,11 @@ export const InvocationsTable = ({ region, name }) => {

const column = {
getFilterValue: () => resultSummaryFilters,
setFilterValue: setResultSummaryFilters,
setFilterValue: (value) => {
setResultSummaryFilters(value);
setStartKey("");
setPreviousKeys([]);
},
};

const options = resultSummaryFilterOptions?.map((value) => ({
Expand Down
3 changes: 0 additions & 3 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@
"test:e2e": {
"inputs": ["$TURBO_DEFAULT$", ".env*"]
},
"auto-trace": {
"inputs": ["$TURBO_DEFAULT$", ".env*"]
},
"dev": {
"cache": false,
"persistent": true
Expand Down

0 comments on commit d8749da

Please sign in to comment.