diff options
| author | Maksim Pechnikov <parallel588@gmail.com> | 2020-09-18 22:04:01 +0300 |
|---|---|---|
| committer | Maksim Pechnikov <parallel588@gmail.com> | 2020-09-18 22:04:01 +0300 |
| commit | 3dbc1bedbf7ea7f168548d0766d095dba02a741a (patch) | |
| tree | b7dd60bda705acd87adbff194f0263e0f49973c2 /src/components/contrast_ratio/contrast_ratio.vue | |
| parent | 947d7cd6f285c7c683b92f79d9d2c08dd2131f5d (diff) | |
| parent | b725df6352c27421f0549b6e4c2ceeb0d240919f (diff) | |
Merge branch 'develop' into feature/import_export_mutes
Diffstat (limited to 'src/components/contrast_ratio/contrast_ratio.vue')
| -rw-r--r-- | src/components/contrast_ratio/contrast_ratio.vue | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/components/contrast_ratio/contrast_ratio.vue b/src/components/contrast_ratio/contrast_ratio.vue index ba92bc17..9dc871b6 100644 --- a/src/components/contrast_ratio/contrast_ratio.vue +++ b/src/components/contrast_ratio/contrast_ratio.vue @@ -39,13 +39,16 @@ export default { props: { large: { - required: false + required: false, + type: Boolean, + default: false }, // TODO: Make theme switcher compute theme initially so that contrast // component won't be called without contrast data contrast: { required: false, - type: Object + type: Object, + default: () => ({}) } }, computed: { |
