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(#7524): Open in New Tab action from a sub-object in a layout #7542

Merged
merged 36 commits into from
Mar 11, 2024
Merged
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
652bf9e
refactor: url tools use named exports
ozyx Feb 29, 2024
2afc8e7
fix: refactor method and remove customUrlParams
ozyx Mar 1, 2024
4b5c16b
test(e2e): verify bounds are preserved in data pivoting
ozyx Mar 1, 2024
3738297
test: remove test as feature is no longer needed
ozyx Mar 1, 2024
c9ed24f
refactor: autoformat keeps changing this so i'mma just commit it
ozyx Mar 1, 2024
e8fe59e
refactor: remove unnecessary code
ozyx Mar 1, 2024
944e9fd
refactor: simplify, add docs
ozyx Mar 1, 2024
bf34b81
Revert "refactor: remove unnecessary code"
ozyx Mar 1, 2024
ef2db0c
a11y: improve aria labels for ITC
ozyx Mar 3, 2024
86ef367
fix: simplify url method
ozyx Mar 3, 2024
1293554
fix: update ITC app actions
ozyx Mar 3, 2024
70b8247
test: add test to generate test data for display layout w/ overlay pl…
ozyx Mar 3, 2024
768ecde
test(e2e): add suite + test for open in new tab from subobject
ozyx Mar 3, 2024
d2f934e
a11y: various a11y improvement drivebys
ozyx Mar 3, 2024
4733b6b
a11y: clock indicator needs to be quiet
ozyx Mar 3, 2024
beaeebd
a11y: add `aria-live` to SuperMenu details
ozyx Mar 4, 2024
751d23e
a11y: greatly improve a11y of Menus and SuperMenus
ozyx Mar 4, 2024
84c27d7
test(e2e): clean up test
ozyx Mar 4, 2024
dac242e
fix: improve a11y for context menus, fix test
ozyx Mar 4, 2024
7bdf8e3
chore: remove nop-longer-recommended extension
ozyx Mar 4, 2024
7237015
feat: provide one more bound option for example data viz
ozyx Mar 4, 2024
0e75c24
fix: no need for `mount`, use dynamic rendering instead
ozyx Mar 4, 2024
bc9f362
Revert "fix: simplify url method"
ozyx Mar 4, 2024
b849c3f
fix: correct time conductor bounds when opening in a new tab from a p…
ozyx Mar 4, 2024
6383a21
test: fix e2e tests
ozyx Mar 5, 2024
87b9866
Revert "test: remove test as feature is no longer needed"
ozyx Mar 5, 2024
28381b5
test: move 2p annotation to test
ozyx Mar 5, 2024
ff23585
test: fix e2e
ozyx Mar 5, 2024
c48af0f
fix: no words for the word god today
ozyx Mar 5, 2024
689f9da
test: fix e2e
ozyx Mar 5, 2024
6657b34
fix: e2e test
ozyx Mar 6, 2024
9b6cf51
test: fix test
ozyx Mar 6, 2024
6ab14b7
driveby: fix perf test
ozyx Mar 6, 2024
06db9d0
fix: revert required prop change
ozyx Mar 7, 2024
bfb2b66
Merge branch 'master' into mct7524
davetsay Mar 11, 2024
e0645c4
Merge branch 'master' into mct7524
unlikelyzero Mar 11, 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
3 changes: 2 additions & 1 deletion src/plugins/inspectorDataVisualization/TelemetryFrame.vue
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,8 @@ export default {
};
const newTabAction = this.openmct.actions.getAction('newTab');
// No view context needed, so pass undefined.
// The urlParams arg will override the global time bounds with the dataviz plot bounds.
// The urlParams arg will override the global time bounds with the data visualization
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

haha

// plot bounds.
newTabAction.invoke([sourceTelemObject], undefined, urlParams);
ozyx marked this conversation as resolved.
Show resolved Hide resolved
this.showMenu = false;
},
Expand Down
Loading