Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Eclipse Foundation
IT
Websites
membership.eclipse.org
Commits
f4ee656c
Commit
f4ee656c
authored
Jul 27, 2021
by
Zhou Fang
Committed by
Martin Lowe
Jul 28, 2021
Browse files
diabled selected wg and fixed a style issue
parent
a042dca5
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/main/www/src/App.css
View file @
f4ee656c
...
...
@@ -170,7 +170,8 @@ html {
margin
:
0
14px
;
}
.eclipsefdn-membership-webform
.msg-popup
{
position
:
absolute
;
z-index
:
1000
;
position
:
fixed
;
top
:
-70px
;
left
:
calc
(
50vw
-
200px
);
width
:
400px
;
...
...
src/main/www/src/components/Application/WorkingGroups/WorkingGroup.js
View file @
f4ee656c
...
...
@@ -92,6 +92,14 @@ const WorkingGroup = ({ formik, fullWorkingGroupList, isLoading }) => {
getOptionSelected
=
{(
option
,
value
)
=>
option
.
value
===
value
.
value
}
getOptionDisabled
=
{(
option
)
=>
{
// disable all selected WGs
const
selectedWG
=
!!
formik
.
values
.
workingGroups
.
find
(
(
selectedWG
)
=>
selectedWG
.
workingGroup
.
label
===
option
.
label
);
return
selectedWG
;
}}
fullWidth
=
{
true
}
onChange
=
{(
ev
,
value
)
=>
{
// this to clear the participation level when user selects another working group
...
...
src/main/www/src/less/App.less
View file @
f4ee656c
...
...
@@ -256,7 +256,8 @@ html {
.msg-popup {
& {
position: absolute;
z-index: 1000;
position: fixed;
top: -70px;
left: calc(50vw - 200px);
width: 400px;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment