diff options
| author | Henry Jameson <me@hjkos.com> | 2020-01-13 02:08:39 +0200 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2020-01-13 02:08:39 +0200 |
| commit | 29a0b4a593219a54c01faa982be4752bcddfc7d0 (patch) | |
| tree | 1fb5c04a80f6546b8de3d13c5535d18277c373b6 /src/components/style_switcher | |
| parent | 9af00424529e2cb9ea9418034fa1d689f248192d (diff) | |
fix shadow and opacity
Diffstat (limited to 'src/components/style_switcher')
| -rw-r--r-- | src/components/style_switcher/style_switcher.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/style_switcher/style_switcher.js b/src/components/style_switcher/style_switcher.js index 34826f9f..98c2cbc5 100644 --- a/src/components/style_switcher/style_switcher.js +++ b/src/components/style_switcher/style_switcher.js @@ -117,7 +117,7 @@ export default { currentOpacity () { return Object.keys(DEFAULT_OPACITY) .map(key => [key, this[key + 'OpacityLocal']]) - .reduce((acc, [key, val]) => ({ ...acc, [ key + 'OpacityLocal' ]: val }), {}) + .reduce((acc, [key, val]) => ({ ...acc, [ key ]: val }), {}) }, currentRadii () { return { |
