Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: OPTIC-1417: Improve projects list API usage with frontend query cache. #6844

Merged
merged 24 commits into from
Jan 14, 2025
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
6eb94ca
feat: OPTIC-1417: Improve projects list API usage with frontend query…
yyassi-heartex Jan 3, 2025
67120d5
moved the check to LSE based on even as prefered
yyassi-heartex Jan 3, 2025
472f398
asking to ignore cache and refetch numbers
yyassi-heartex Jan 3, 2025
77267f9
Merge branch 'develop' into 'fb-optic-1417'
yyassi-heartex Jan 6, 2025
f5942b8
instead of specifically setting localstorage we now invoke an event f…
yyassi-heartex Jan 6, 2025
0e4a83b
clearing out workspace on logout
yyassi-heartex Jan 6, 2025
7926eca
lint cleanup
yyassi-heartex Jan 6, 2025
c34a976
Merge branch 'develop' into 'fb-optic-1417'
yyassi-heartex Jan 6, 2025
3f5553f
Merge branch 'develop' into 'fb-optic-1417'
yyassi-heartex Jan 6, 2025
20d3fb7
Update web/apps/labelstudio/src/components/Menubar/Menubar.jsx
bmartel Jan 8, 2025
e1aae2f
ci: Update Feature Flags
robot-ci-heartex Jan 7, 2025
49e51d7
refactor: OPTIC-1496: clean up empty ff (#6859)
luarmr Jan 7, 2025
c326807
feat: beg-9: Updating Makefile and docker-compose.yml to latest synta…
wesleylima Jan 7, 2025
4504f21
ci: Update Feature Flags
robot-ci-heartex Jan 8, 2025
a02e4c4
chore: Update liveContent.json (#6873)
bmartel Jan 8, 2025
3469435
ci: Build frontend
robot-ci-heartex Jan 8, 2025
9a7bef8
chore: Update liveContent.json (#6874)
bmartel Jan 8, 2025
96a813d
ci: Build frontend
robot-ci-heartex Jan 8, 2025
9cfa1ca
feat: OPTIC-1197: rearrange data manager tabs and toolbar (#6503)
carly-bartel Jan 8, 2025
79ba401
ci: bump docker/build-push-action
farioas Jan 8, 2025
d513abb
fix: OPTIC-1490: Safely reference content_type of the response so it …
bmartel Jan 8, 2025
6a7caf7
Merge branch 'develop' into 'fb-optic-1417'
bmartel Jan 8, 2025
7e42fcf
Merge remote-tracking branch 'origin/develop' into fb-optic-1417
bmartel Jan 10, 2025
fb9d7bf
Merge branch 'develop' into 'fb-optic-1417'
yyassi-heartex Jan 10, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ export const ActionsButton = injector(
onOk() {
const body = formRef.current?.assembleFormData({ asJSON: true });

store.SDK.invoke("actionDialogOk", action.id, { body });
store.invokeAction(action.id, { body });
},
});
Expand Down
Loading