Skip to content

Commit d8749da

Browse files
committed
chore: cleanup
1 parent 3b6fc6c commit d8749da

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"packageManager": "[email protected]",
1111
"scripts": {
1212
"deploy": "yarn build && yarn turbo deploy --env-mode=loose --color",
13-
"auto-trace": "yarn turbo auto-trace --env-mode=loose --color",
13+
"auto-trace": "cd packages/api && yarn auto-trace",
1414
"build": "yarn turbo build --env-mode=loose --color",
1515
"test": "yarn turbo test --env-mode=loose --color",
1616
"start": "turbo dev --env-mode=loose --color",

packages/dashboard/src/routes/invocations/table.tsx

+5-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,11 @@ export const InvocationsTable = ({ region, name }) => {
4242

4343
const column = {
4444
getFilterValue: () => resultSummaryFilters,
45-
setFilterValue: setResultSummaryFilters,
45+
setFilterValue: (value) => {
46+
setResultSummaryFilters(value);
47+
setStartKey("");
48+
setPreviousKeys([]);
49+
},
4650
};
4751

4852
const options = resultSummaryFilterOptions?.map((value) => ({

turbo.json

-3
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@
1919
"test:e2e": {
2020
"inputs": ["$TURBO_DEFAULT$", ".env*"]
2121
},
22-
"auto-trace": {
23-
"inputs": ["$TURBO_DEFAULT$", ".env*"]
24-
},
2522
"dev": {
2623
"cache": false,
2724
"persistent": true

0 commit comments

Comments
 (0)