Removes preventNone as per conversation with UX designer.

This commit is contained in:
Joshi
2020-04-08 11:46:12 -07:00
parent f510f3edd0
commit 73b0fc6f79
2 changed files with 6 additions and 15 deletions

View File

@@ -83,9 +83,6 @@ export default {
isEditing: {
type: Boolean
},
preventNone: {
type: Boolean
},
styleItem: {
type: Object,
required: true
@@ -107,8 +104,7 @@ export default {
title: STYLE_CONSTANTS.borderColorTitle,
value: this.normalizeValue(value),
property: 'border',
isEditing: this.isEditing,
preventNone: this.preventNone
isEditing: this.isEditing
}
},
backgroundColorOption() {
@@ -118,8 +114,7 @@ export default {
title: STYLE_CONSTANTS.backgroundColorTitle,
value: this.normalizeValue(value),
property: 'backgroundColor',
isEditing: this.isEditing,
preventNone: this.preventNone
isEditing: this.isEditing
}
},
colorOption() {