Skip to content

Commit 31fb893

Browse files
authored
Merge pull request #6469 from voxel51/chore/resolve-dev-conflicts
resolve merge conflicts from develop
2 parents 32cbbcd + 4bdabde commit 31fb893

File tree

138 files changed

+6579
-13154
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

138 files changed

+6579
-13154
lines changed

.github/workflows/build-docs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ jobs:
4343
env:
4444
FIFTYONE_DO_NOT_TRACK: true
4545
DOCSEARCH_API_KEY: ${{ secrets.DOCSEARCH_API_KEY }}
46+
GITHUB_TOKEN: ${{ secrets.FIFTYONE_GITHUB_TOKEN }}
4647
steps:
4748
- name: Clone fiftyone for tag builds
4849
if: github.ref_type == 'tag'

.github/workflows/e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
submodules: true
2525

2626
- name: Setup node 22
27-
uses: actions/setup-node@v5
27+
uses: actions/setup-node@v6
2828
with:
2929
node-version: 22
3030

.github/workflows/lint-app.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- 'app/**'
1919
2020
- name: Set up Node.js
21-
uses: actions/setup-node@v5
21+
uses: actions/setup-node@v6
2222
with:
2323
node-version: "22"
2424

app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"typedoc": "^0.23.21",
4444
"typescript": "^4.7.4",
4545
"typescript-plugin-css-modules": "^5.0.2",
46-
"vite": "^5.4.20",
46+
"vite": "^5.4.21",
4747
"vite-plugin-eslint": "^1.8.1",
4848
"vite-plugin-relay": "^2.0.0",
4949
"vitest": "^3.0.8"

app/packages/aggregations/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@
2727
"lodash": "^4.17.21",
2828
"prettier": "2.2.1",
2929
"typescript": "4.2.4",
30-
"vite": "^5.4.20"
30+
"vite": "^5.4.21"
3131
}
3232
}

app/packages/app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
"rollup-plugin-polyfill-node": "^0.6.2",
5656
"typescript": "^5.3.2",
5757
"typescript-plugin-css-modules": "^5.0.2",
58-
"vite": "^5.4.20",
58+
"vite": "^5.4.21",
5959
"vite-plugin-relay": "^1.0.7",
6060
"vite-plugin-rewrite-all": "^1.0.2",
6161
"vite-plugin-svgr": "^4.2.0"

app/packages/components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"prettier": "^2.7.1",
2828
"typescript": "^4.7.4",
2929
"typescript-plugin-css-modules": "^5.1.0",
30-
"vite": "^5.4.20"
30+
"vite": "^5.4.21"
3131
},
3232
"peerDependencies": {
3333
"jotai": "*",

app/packages/components/src/components/ErrorBoundary/ErrorBoundary.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,13 +73,16 @@ export const ErrorDisplayMarkup = <T extends AppError>({
7373
content: JSON.stringify(error.payload, null, 2),
7474
});
7575
} else if (error instanceof OperatorError) {
76+
if (error.message) {
77+
messages.push({ message: "Message", content: error.message });
78+
}
7679
if (error.operator) {
7780
messages.push({ message: "Operator", content: error.operator });
7881
}
7982
if (error instanceof PanelEventError) {
8083
messages.push({ message: "Event", content: error.event });
8184
}
82-
messages.push({ message: error.message, content: error.stack });
85+
messages.push({ message: "Trace", content: error.stack });
8386
}
8487
if (error.stack && !(error instanceof OperatorError)) {
8588
messages = [...messages, { message: "Trace", content: error.stack }];

app/packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
"rollup-plugin-polyfill-node": "^0.6.2",
7979
"typescript": "^5.4.5",
8080
"typescript-plugin-css-modules": "^5.1.0",
81-
"vite": "^5.4.20",
81+
"vite": "^5.4.21",
8282
"vite-plugin-relay": "^1.0.7"
8383
},
8484
"peerDependencies": {

app/packages/core/src/components/ColorModal/ColorFooter.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import * as foq from "@fiftyone/relay";
33
import * as fos from "@fiftyone/state";
44
import React, { useEffect } from "react";
55
import { useMutation } from "react-relay";
6-
import { useRecoilValue } from "recoil";
6+
import { useRecoilValue, useSetRecoilState } from "recoil";
77
import { ButtonGroup, ModalActionButtonContainer } from "./ShareStyledDiv";
88
import { activeColorEntry } from "./state";
99

@@ -15,6 +15,7 @@ const ColorFooter: React.FC = () => {
1515
: "Save to dataset app config";
1616
const setColorScheme = fos.useSetSessionColorScheme();
1717
const activeColorModalField = useRecoilValue(activeColorEntry);
18+
const setActiveColorModalField = useSetRecoilState(activeColorEntry);
1819
const [setDatasetColorScheme] =
1920
useMutation<foq.setDatasetColorSchemeMutation>(foq.setDatasetColorScheme);
2021
const colorScheme = useRecoilValue(fos.colorScheme);

0 commit comments

Comments
 (0)