File tree Expand file tree Collapse file tree 4 files changed +16
-8
lines changed
pages/copilot-request-form
libs/core/lib/profile/profile-functions/profile-factory Expand file tree Collapse file tree 4 files changed +16
-8
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ export const copilotsRoutes: ReadonlyArray<PlatformRoute> = [
27
27
id : toolTitle ,
28
28
rolesRequired : [
29
29
UserRole . administrator ,
30
- UserRole . connectManager ,
30
+ UserRole . projectManager ,
31
31
] ,
32
32
route : rootRoute ,
33
33
} ,
Original file line number Diff line number Diff line change @@ -267,13 +267,15 @@ const CopilotRequestForm: FC<{}> = () => {
267
267
tabIndex = { 0 }
268
268
/>
269
269
< p className = { styles . formRow } > Any specific skills or technology requirements that come to mind?</ p >
270
- < InputSkillSelector
271
- placeholder = 'Enter skills you are searching for...'
272
- useWrapper = { false }
273
- theme = 'tc-green'
274
- value = { formValues . skills }
275
- onChange = { handleSkillsChange }
276
- />
270
+ < div className = { styles . skillsWrapper } >
271
+ < InputSkillSelector
272
+ placeholder = 'Enter skills you are searching for...'
273
+ useWrapper = { false }
274
+ theme = 'tc-green'
275
+ value = { formValues . skills }
276
+ onChange = { handleSkillsChange }
277
+ />
278
+ </ div >
277
279
< p className = { styles . formRow } > What's the planned start date for the copilot?</ p >
278
280
< InputDatePicker
279
281
label = 'Copilot Start Date'
Original file line number Diff line number Diff line change @@ -45,4 +45,9 @@ $gradient: linear-gradient(
45
45
flex-direction : column ;
46
46
gap : 1rem ;
47
47
}
48
+
49
+ .skillsWrapper {
50
+ border : 1px solid #aaaaaa ;
51
+ border-radius : 0.375rem ;
52
+ }
48
53
}
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ export enum UserRole {
9
9
paymentViewer = 'Payment Viewer' ,
10
10
paymentProviderAdmin = 'PaymentProvider Admin' ,
11
11
paymentProviderViewer = 'PaymentProvider Viewer' ,
12
+ projectManager = 'Project Manager' ,
12
13
taxFormAdmin = 'TaxForm Admin' ,
13
14
taxFormViewer = 'TaxForm Viewer'
14
15
}
You can’t perform that action at this time.
0 commit comments