We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f87a28 commit e737106Copy full SHA for e737106
pages/columns/@column/column-inspector/modal-panel.ts
@@ -64,6 +64,16 @@ export function ModalUnitPanel(props) {
64
if(unit?.environ_id) {
65
window.open('/lex/environments/' + unit.environ_id, '_blank');
66
}
67
+
68
+ if(e?.data?.int_id) { // fix when new we components release is out
69
+ window.open('/lex/intervals/' + e.data.int_id, '_blank');
70
+ }
71
72
+ /* // implement when new web components release is out
73
+ if(unit?.strat_name_id) {
74
+ window.open('/lex/strat-names/' + unit.strat_name_id, '_blank');
75
76
+ */
77
},
78
});
79
0 commit comments