mirror of
https://github.com/OpenNebula/one.git
synced 2025-01-12 09:17:41 +03:00
parent
1eb19ee81f
commit
cfd346c354
12419
src/fireedge/package-lock.json
generated
12419
src/fireedge/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -74,7 +74,7 @@
|
||||
"cross-env": "7.0.2",
|
||||
"dagre": "0.8.5",
|
||||
"dompurify": "2.2.6",
|
||||
"express": "4.14.0",
|
||||
"express": "4.17.1",
|
||||
"fs-extra": "9.0.1",
|
||||
"fuse.js": "6.4.1",
|
||||
"guacamole-lite": "0.6.3",
|
||||
|
@ -17,9 +17,9 @@ const Logo = memo(({ width, height, spinner, withText, viewBox, ...props }) => {
|
||||
|
||||
return (
|
||||
<svg viewBox={viewBox} width={width} height={height} {...props}>
|
||||
<defs>
|
||||
{spinner &&
|
||||
Object.entries(cloudColor)?.map(([key, color]) => (
|
||||
{spinner && (
|
||||
<defs>
|
||||
{Object.entries(cloudColor)?.map(([key, color]) => (
|
||||
<linearGradient
|
||||
key={`gradient-${key}`}
|
||||
id={`gradient__${key}`}
|
||||
@ -36,7 +36,8 @@ const Logo = memo(({ width, height, spinner, withText, viewBox, ...props }) => {
|
||||
/>
|
||||
</linearGradient>
|
||||
))}
|
||||
</defs>
|
||||
</defs>
|
||||
)}
|
||||
{/* --------------- CLOUD ------------------ */}
|
||||
<path
|
||||
fill={spinner ? 'url(#gradient__child1)' : cloudColor.child1.from}
|
||||
|
Loading…
Reference in New Issue
Block a user