Commit 97e09a18 authored by Grant's avatar Grant
Browse files

Merge branch 'fix-template-opacity' into 'main'

Fix template opacity

See merge request sc07/canvas!23
parents 47ecc632 4bd721a3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -71,7 +71,7 @@ export const TemplateSettings = () => {
          step={1}
          minValue={0}
          maxValue={100}
          value={opacity || 100}
          value={opacity ?? 100}
          onChange={(v) => setOpacity(v as number)}
          getValue={(v) => v + "%"}
        />