diff --git a/src/photo/PhotoRecipe.tsx b/src/photo/PhotoRecipe.tsx index 485e09e2..98f4b366 100644 --- a/src/photo/PhotoRecipe.tsx +++ b/src/photo/PhotoRecipe.tsx @@ -42,29 +42,31 @@ export default function PhotoRecipe({ const renderDataSquare = (label: string, value: string | number = '0') => (
{typeof value === 'number' ? addSign(value) : value}
-
{label}
+
+ {label} +
); return
-
+
DR {dynamicRange ?? 100}
{whiteBalanceFormatted.length <= 8 && 'AWB: '} @@ -72,9 +74,9 @@ export default function PhotoRecipe({ {hasCustomizedWhiteBalance && <> {' '} {'('} - R{addSign(whiteBalance?.red ?? 0)} - / - B{addSign(whiteBalance?.blue ?? 0)} + R {addSign(whiteBalance?.red ?? 0)} + / + B {addSign(whiteBalance?.blue ?? 0)} {')'} }
@@ -114,83 +116,11 @@ export default function PhotoRecipe({
} {hasBWAdjustments &&
- BW Adjustment: - {' '} - {addSign(bwAdjustment)} - {' '} - MG: - {addSign(bwMagentaGreen)} + BW Adjustment: {addSign(bwAdjustment)} + {' / '} + MG: {addSign(bwMagentaGreen)}
}
-
- {dynamicRange !== undefined && <> -
DR
-
{dynamicRange}
- } - {highlight !== undefined && <> -
Highlight
-
{addSign(highlight)}
- } - {shadow !== undefined && <> -
Shadow
-
{addSign(shadow)}
- } - {color !== undefined && <> -
Color
-
{addSign(color)}
- } - {highISONoiseReduction !== undefined && <> -
High ISO NR
-
{addSign(highISONoiseReduction)}
- } - {noiseReductionBasic !== undefined && <> -
NR
-
{noiseReductionBasic}
- } - {sharpness !== undefined && <> -
Sharpness
-
{addSign(sharpness)}
- } - {clarity !== undefined && <> -
Clarity
-
{addSign(clarity)}
- } - {grainEffect !== undefined && <> -
Grain
-
{grainEffect.roughness} / {grainEffect.size}
- } - {colorChromeEffect !== undefined && <> -
Chrome
-
{colorChromeEffect}
- } - {colorChromeFXBlue !== undefined && <> -
Chrome FX Blue
-
{colorChromeFXBlue}
- } - {whiteBalance !== undefined && <> -
White Balance
-
-
{whiteBalance.type}
-
- {addSign(whiteBalance.red)} / {addSign(whiteBalance.blue)} -
-
- } - {bwAdjustment !== undefined && <> -
BW
-
{addSign(bwAdjustment)}
- } - {bwMagentaGreen !== undefined && <> -
BW MG
-
{addSign(bwMagentaGreen)}
- } -
; }