(priority: number)
| 105 | } |
| 106 | |
| 107 | const priorityColor = (priority: number) => { |
| 108 | if (priority >= 4 && priority <= 7) { |
| 109 | return 'rgba(230, 126, 34, 0.7)'; |
| 110 | } else if (priority > 7) { |
| 111 | return '#e74c3c'; |
| 112 | } else { |
| 113 | return 'transparent'; |
| 114 | } |
| 115 | }; |
| 116 | |
| 117 | const Message = ({ |
| 118 | fDelete, |
no outgoing calls
no test coverage detected
searching dependent graphs…