Skip to content

Commit

Permalink
feat: Added tooltip on failed case. Fixed cancel color for variogram …
Browse files Browse the repository at this point in the history
…cases (#439)

Co-authored-by: Wilhelm Vold <[email protected]>
  • Loading branch information
thomaslf97 and Sinrefvol authored Feb 4, 2025
1 parent 7932750 commit 7b5fda0
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,8 @@ export const CaseButtons = ({
caseStatus === 'Waiting' ||
caseStatus === 'Running'
? 'Case is running.'
: caseStatus === 'Failed'
? 'The area selected for the script does not include architectural element that was provided when computing a case.'
: ''
}
>
Expand Down Expand Up @@ -191,6 +193,8 @@ export const CaseButtons = ({
caseStatus === 'Waiting' ||
caseStatus === 'Running'
? 'Case are running.'
: caseStatus === 'Failed'
? 'The area selected for the script does not include architectural element that was provided when computing a case.'
: ''
}
>
Expand Down

0 comments on commit 7b5fda0

Please sign in to comment.