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
2b7f2c97
Commit
2b7f2c97
authored
Jan 14, 2022
by
Zhou Fang
Browse files
Fixed preview issue for web logo
parent
98993d47
Pipeline
#1773
passed with stage
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
docker-compose.yml
View file @
2b7f2c97
...
...
@@ -47,7 +47,7 @@ services:
-
keycloak
-
foundationdb
foundationdb
:
image
:
eclipsefdn/foundationdb-api:staging-
10b33ae
-1
1
image
:
eclipsefdn/foundationdb-api:staging-
cf0112a
-1
3
ports
:
-
'
8095:8095'
environment
:
...
...
src/main/www/src/components/Portal/OrgProfile/OrgProfilesBasicInfo.tsx
View file @
2b7f2c97
...
...
@@ -120,9 +120,10 @@ export default function OrgProfilesBasicInfo() {
}
else
{
setIsUploadingWeb
(
false
);
}
formikOrg
.
setFieldValue
(
`logos.logoFor
${
uploadTarget
}
`
,
fileContent
);
// Update Portal Context - orgInfo to make sure everything is synced among sections
orgInfo
!==
null
&&
setOrgInfo
({
...
orgInfo
,
logos
:
{
...
orgInfo
?.
logos
,
web
:
fileContent
}
});
if
(
orgInfo
!==
null
&&
uploadTarget
===
'
Web
'
)
{
setOrgInfo
({
...
orgInfo
,
logos
:
{
...
orgInfo
?.
logos
,
web
:
fileContent
}
});
}
succeededToExecute
(
''
);
};
...
...
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