-
Notifications
You must be signed in to change notification settings - Fork 4
Roi time series select colour change #402
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
Changes from all commits
149e5fc
34024da
f6b3669
6cf67ff
b9f62de
9a0ccbd
bf6dda7
5eebc2e
e12c1db
0f76477
f416ae4
5f268ed
de83bea
02546bb
f28ee6e
f1a3d2a
c31aae5
4598adb
43fe89b
fb92b12
36987b2
400783a
188db99
3575bbd
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,6 +50,7 @@ import { | |
setTimeSeriesItemZeroLine, | ||
setTimeSeriesItemDrawOrderList, | ||
changeRangeUnit, | ||
setClickedData, | ||
} from "store/slice/VisualizeItem/VisualizeItemSlice" | ||
import { AppDispatch } from "store/store" | ||
import { arrayEqualityFn } from "utils/EqualityUtils" | ||
|
@@ -290,6 +291,14 @@ const LegendSelect: FC = () => { | |
drawOrderList: newDrawOrderList, | ||
}), | ||
) | ||
dispatch( | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @itutu-tienday When adding an ROI, it's just temporary data, and the API for getting fluorescence will encounter an error. Therefore, for the time being, I will not allow this API to be called when adding an ROI |
||
setClickedData({ | ||
itemId, | ||
clickedDataId: event.target.checked ? index : null, | ||
}), | ||
), | ||
// eslint-disable-next-line no-console | ||
console.log("#############\n In TimeSeriesItemEditor.tsx, clickedDataId") | ||
|
||
if (filePath !== null) { | ||
dispatch(getTimeSeriesDataById({ path: filePath, index: index })) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
-> The selection of ROI in Edit Roi and the selection of Flou do not match.
-> When Flou is selected in this state, the ROI selection is canceled, which seems to be a reversed operation.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@itutu-tienday It seems like it has been fixed