File tree 2 files changed +25
-2
lines changed
src/app/components/questions-table
2 files changed +25
-2
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,9 @@ sections:
8
8
- order : 1
9
9
text : What is the main technology in your application?
10
10
explanation : Identify the main framework or technology used in your application.
11
+ includeFor :
12
+ - category : Technology
13
+ tag : Java
11
14
answers :
12
15
- order : 1
13
16
text : Quarkus
@@ -17,6 +20,9 @@ sections:
17
20
applyTags :
18
21
- category : Technology
19
22
tag : Quarkus
23
+ autoAnswerFor :
24
+ - category : Technology
25
+ tag : Quarkus
20
26
- order : 2
21
27
text : Spring Boot
22
28
risk : green
@@ -25,6 +31,9 @@ sections:
25
31
applyTags :
26
32
- category : Technology
27
33
tag : Spring Boot
34
+ autoAnswerFor :
35
+ - category : Technology
36
+ tag : Spring Boot
28
37
- order : 3
29
38
text : Legacy Monolithic Application
30
39
risk : red
@@ -33,6 +42,9 @@ sections:
33
42
applyTags :
34
43
- category : Architecture
35
44
tag : Monolith
45
+ autoAnswerFor :
46
+ - category : Architecture
47
+ tag : Monolith
36
48
- order : 2
37
49
text : Does your application use a microservices architecture?
38
50
explanation : Assess if the application is built using a microservices architecture.
@@ -45,11 +57,17 @@ sections:
45
57
applyTags :
46
58
- category : Architecture
47
59
tag : Microservices
60
+ autoAnswerFor :
61
+ - category : Architecture
62
+ tag : Microservices
48
63
- order : 2
49
64
text : No
50
65
risk : yellow
51
66
rationale : Non-microservices architectures may face scalability issues.
52
67
mitigation : Assess the feasibility of transitioning to microservices.
68
+ autoAnswerFor :
69
+ - category : Architecture
70
+ tag : Monolith
53
71
- order : 3
54
72
text : Unknown
55
73
risk : unknown
@@ -59,6 +77,9 @@ sections:
59
77
- order : 3
60
78
text : Is your application's data storage cloud-optimized?
61
79
explanation : Evaluate if the data storage solution is optimized for cloud usage.
80
+ includeFor :
81
+ - category : Technology
82
+ tag : Java
62
83
answers :
63
84
- order : 1
64
85
text : Cloud-Native Storage Solution
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ import { useTranslation } from "react-i18next";
17
17
import spacing from "@patternfly/react-styles/css/utilities/Spacing/spacing" ;
18
18
import { Assessment , Question , Questionnaire } from "@app/api/models" ;
19
19
import { useLocalTableControls } from "@app/hooks/table-controls" ;
20
- import { Label } from "@patternfly/react-core" ;
20
+ import { Label , Tooltip } from "@patternfly/react-core" ;
21
21
import { NoDataEmptyState } from "@app/components/NoDataEmptyState" ;
22
22
import AnswerTable from "@app/components/answer-table/answer-table" ;
23
23
import { AxiosError } from "axios" ;
@@ -113,7 +113,9 @@ const QuestionsTable: React.FC<{
113
113
>
114
114
{ ( ! ! question ?. includeFor ?. length ||
115
115
! ! question ?. excludeFor ?. length ) && (
116
- < Label className = { spacing . mrSm } > Conditional</ Label >
116
+ < Tooltip content = { "Question is conditionnally added" } >
117
+ < Label className = { spacing . mrSm } > Conditional </ Label >
118
+ </ Tooltip >
117
119
) }
118
120
{ question . text }
119
121
</ Td >
You can’t perform that action at this time.
0 commit comments