Skip to content

Commit

Permalink
fixes interface "trim" defaults (#14709)
Browse files Browse the repository at this point in the history
  • Loading branch information
br41nslug committed Jul 28, 2022
1 parent 15be1c6 commit 8740f5e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/src/interfaces/input-multiline/input-multiline.vue
Expand Up @@ -45,7 +45,7 @@ export default defineComponent({
},
trim: {
type: Boolean,
default: true,
default: false,
},
font: {
type: String as PropType<'sans-serif' | 'serif' | 'monospace'>,
Expand Down
2 changes: 1 addition & 1 deletion app/src/interfaces/input/input.vue
Expand Up @@ -72,7 +72,7 @@ export default defineComponent({
},
trim: {
type: Boolean,
default: true,
default: false,
},
font: {
type: String as PropType<'sans-serif' | 'serif' | 'monospace'>,
Expand Down

0 comments on commit 8740f5e

Please sign in to comment.