Skip to content

Commit 1a1f820

Browse files
author
amrelbialy
committed
fix: params default value
1 parent ed00cfe commit 1a1f820

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CloudImageProvider.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export default {
3131
lg: '(min-width: 992px)', // 992 - 1199 SMALL_LAPTOP_SCREEN
3232
xl: '(min-width: 1200px)' // from 1200 USUALSCREEN
3333
},
34-
params: processParams(this.cloudImageConfig.params),
34+
params:this.cloudImageConfig.params? processParams(this.cloudImageConfig.params) :'org_if_sml=1',
3535
innerWidth: typeof window !== 'undefined' ? window.innerWidth : null,
3636
previewQualityFactor: 10,
3737
doNotReplaceURL: this.cloudImageConfig.doNotReplaceURL || false,

0 commit comments

Comments
 (0)