FIX: Ran prettier to fix build (#8323)

This commit is contained in:
Mark VanLandingham 2019-11-08 10:50:03 -06:00 committed by GitHub
parent 7f3812b90a
commit 562acb21ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 7 deletions

View File

@ -8,8 +8,5 @@ export default SelectKitHeaderComponent.extend({
clearable: alias("options.clearable"),
caretUpIcon: alias("options.caretUpIcon"),
caretDownIcon: alias("options.caretDownIcon"),
shouldDisplayClearableButton: and(
"clearable",
"computedContent.hasSelection"
)
shouldDisplayClearableButton: and("clearable", "computedContent.hasSelection")
});

View File

@ -6,7 +6,5 @@ export default SelectKitRowComponent.extend({
"select-kit/templates/components/dropdown-select-box/dropdown-select-box-row",
classNames: "dropdown-select-box-row",
description: alias(
"computedContent.originalContent.description"
)
description: alias("computedContent.originalContent.description")
});