-
Notifications
You must be signed in to change notification settings - Fork 179
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(app): fix failed error details modal styling and long protocol me display issue #13133
Changes from 4 commits
99af744
0c6a4d3
204e0c1
7ae7a5d
1e4410f
164aa02
768b643
910cbb2
48b4186
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 |
---|---|---|
|
@@ -365,7 +365,7 @@ function PrepareToRun({ | |
if ( | ||
mostRecentAnalysis == null || | ||
attachedInstruments == null || | ||
(protocolHasModules && attachedModules == null) || | ||
(protocolHasModules && attachedModules.length === 0) || | ||
allPipettesCalibrationData == null | ||
) { | ||
return <ProtocolSetupSkeleton cancelAndClose={onConfirmCancelClose} /> | ||
|
@@ -491,8 +491,8 @@ function PrepareToRun({ | |
disabled={ | ||
mostRecentAnalysis == null || | ||
attachedInstruments == null || | ||
(protocolHasModules && attachedModules == null) || | ||
allPipettesCalibrationData == null | ||
(protocolHasModules && attachedModules.length === 0) || | ||
allPipettesCalibrationData.data.length === 0 | ||
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. allPipettesCalibrationData is object
In my understanding, this disabled is true if there is no calibration data. We need to check the length of 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. This will be fixed in a following PR |
||
} | ||
onPlay={onPlay} | ||
ready={isReadyToRun} | ||
|
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.
header needs
![Screen Shot 2023-07-21 at 2 26 41 PM](https://private-user-images.githubusercontent.com/29845468/255254751-0365cbc8-a505-4a31-8e85-84db89b1f5ad.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzg5MTE3NDQsIm5iZiI6MTczODkxMTQ0NCwicGF0aCI6Ii8yOTg0NTQ2OC8yNTUyNTQ3NTEtMDM2NWNiYzgtYTUwNS00YTMxLThlODUtODRkYjg5YjFmNWFkLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMDclMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjA3VDA2NTcyNFomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTAzMzU3OWU2OWE2ZTFmMzVkOTc1ZGEwOGM5MmUwMTZhNjdkZmQ4MzdkOGQ1ZTZjMGMyYzBhOTY0MTUxNmFjMDUmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.SJ396V6P-iEyntMDcoxHlrK3fPAD4_KoKxMIALBjEa0)
iconColor: COLORS.red2
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.
thank you!