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

Fix complex displays not loading #7858

Merged
merged 23 commits into from
Oct 8, 2024
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
cd08682
fix: add docs and allow historical requests thru
ozyx Sep 25, 2024
4db5676
refactor: update `waitForReady` to use the tick event
ozyx Sep 25, 2024
d88845a
refactor plan view to use resizeObserver instead of polling
davetsay Sep 28, 2024
e395cfe
revert aborting request for size=1
davetsay Sep 30, 2024
57b2c8a
allow 'latest' requests without clock being set
davetsay Sep 30, 2024
d6e08d2
Merge branch 'master' into vipergc-415-dave
davetsay Sep 30, 2024
9960c5d
Merge branch 'master' into vipergc-415
davetsay Sep 30, 2024
bf08498
Merge branch 'vipergc-415' into vipergc-415-dave
davetsay Sep 30, 2024
2d4b128
fix progress bar indeterminate progress cpu/gpu performance
charlesh88 Sep 30, 2024
3ae38a5
Closes vipergc-415
charlesh88 Oct 1, 2024
e9a74f0
provide a default time context if none is provided
davetsay Oct 1, 2024
258d621
change back prod source maps
davetsay Oct 1, 2024
ea14cfc
handle edge case of realtime clocks update not displaying
davetsay Oct 1, 2024
7d7607e
Merge branch 'master' into vipergc-415
davetsay Oct 2, 2024
abfe56e
add explanation for skipping interceptor
davetsay Oct 2, 2024
67e6213
telemetry api ensures we will have a timeContext
davetsay Oct 2, 2024
17a129b
telemetry api ensures telemetry collection will have timeContext
davetsay Oct 2, 2024
0d2a188
Merge branch 'master' into vipergc-415
akhenry Oct 3, 2024
a64e184
we DO need a default context here (thanks e2e)
davetsay Oct 3, 2024
8e86bbe
timeContext is added to request options if not provided
davetsay Oct 3, 2024
4049e4c
standardize requests first
davetsay Oct 7, 2024
dc7a07c
fix timeContexts in telemetryCollection and api
davetsay Oct 8, 2024
6269ecc
Merge branch 'master' into vipergc-415
davetsay Oct 8, 2024
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
Prev Previous commit
Next Next commit
provide a default time context if none is provided
  • Loading branch information
davetsay committed Oct 1, 2024
commit e9a74f074a5e87cfe39df4910c14d8ad0152883d
4 changes: 4 additions & 0 deletions src/api/telemetry/TelemetryAPI.js
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,10 @@ export default class TelemetryAPI {
options.domain = this.openmct.time.getTimeSystem().key;
}

if (!Object.hasOwn(options, 'timeContext')) {
options.timeContext = this.openmct.time;
}

return options;
}

Expand Down
Loading