File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
web-client/src/components Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -332,8 +332,8 @@ const shouldDisplayOverlayGradient =computed(() => {
332332 (computedOverlayDataKey .value != ' atl24_class' );
333333});
334334
335- const isAtl24WithPhotonCloud = computed (() => { // hack needed until sever supports both heights
336- return ((atlChartFilterStore .selectedOverlayedReqIds .length > 0 ) && (recTreeStore .selectedApi === ' atl24x ' ));
335+ const isAtl24WithPhotonCloud = computed (() => { // hack needed until server supports both heights
336+ return ((atlChartFilterStore .selectedOverlayedReqIds .length > 0 ) && (recTreeStore .selectedApi . includes ( ' atl24 ' ) ));
337337});
338338
339339const PC_OnTooltip = computed (() => {
@@ -736,16 +736,16 @@ watch(() => atlChartFilterStore.showSlopeLines, async (newValue) => {
736736 >
737737 </ToggleButton >
738738 </div >
739- <div v-if =" recTreeStore.selectedApi==='atl06p' " class =" slope-checkbox-group" >
739+ <div v-if =" recTreeStore.selectedApi.includes('atl06') " class =" slope-checkbox-group" >
740740 <Checkbox
741- v-if =" (recTreeStore.selectedApi==='atl06p' )"
741+ v-if =" (recTreeStore.selectedApi.includes('atl06') )"
742742 v-model =" atlChartFilterStore.showSlopeLines"
743743 binary
744744 inputId =" sslCheckbox"
745745 size =" small"
746- :tooltipText =" 'Show Slope Lines for ATL06p '"
746+ :tooltipText =" 'Show linear fit for each segment '"
747747 />
748- <label v-if =" (recTreeStore.selectedApi==='atl06p') " for =" sslCheckbox" class =" sr-checkbox-label" >Show Slope Lines </label >
748+ <label v-if =" (recTreeStore.selectedApi.includes('atl06')) " for =" sslCheckbox" class =" sr-checkbox-label" >Show linear fit for each segment </label >
749749 </div >
750750 <SrRunControl
751751 :includeAdvToggle =" false"
You can’t perform that action at this time.
0 commit comments