summaryrefslogtreecommitdiffstats
path: root/client/components
diff options
context:
space:
mode:
authorIgnatz <computer-freak94@gmx.de>2018-05-18 11:13:01 +0200
committerIgnatz <computer-freak94@gmx.de>2018-05-18 11:13:01 +0200
commitef99e6a6b1cd8d55fdab9ff94e7bfc3d5c538b8f (patch)
tree41bec9d1c21da1b960cbc20c84275383d625fc20 /client/components
parent3bf4f3ef40a50b2471d0a6a402c443760ce4427b (diff)
downloadwekan-ef99e6a6b1cd8d55fdab9ff94e7bfc3d5c538b8f.tar.gz
wekan-ef99e6a6b1cd8d55fdab9ff94e7bfc3d5c538b8f.tar.bz2
wekan-ef99e6a6b1cd8d55fdab9ff94e7bfc3d5c538b8f.zip
indend corrections
Diffstat (limited to 'client/components')
-rw-r--r--client/components/cards/cardCustomFields.js6
-rw-r--r--client/components/sidebar/sidebarCustomFields.js10
2 files changed, 8 insertions, 8 deletions
diff --git a/client/components/cards/cardCustomFields.js b/client/components/cards/cardCustomFields.js
index 019fcab5..aa50caec 100644
--- a/client/components/cards/cardCustomFields.js
+++ b/client/components/cards/cardCustomFields.js
@@ -95,9 +95,9 @@ CardCustomField.register('cardCustomField');
}
showDate() {
- // this will start working once mquandalle:moment
- // is updated to at least moment.js 2.10.5
- // until then, the date is displayed in the "L" format
+ // this will start working once mquandalle:moment
+ // is updated to at least moment.js 2.10.5
+ // until then, the date is displayed in the "L" format
return this.date.get().calendar(null, {
sameElse: 'llll',
});
diff --git a/client/components/sidebar/sidebarCustomFields.js b/client/components/sidebar/sidebarCustomFields.js
index d74a5919..e56d744e 100644
--- a/client/components/sidebar/sidebarCustomFields.js
+++ b/client/components/sidebar/sidebarCustomFields.js
@@ -27,11 +27,11 @@ const CreateCustomFieldPopup = BlazeComponent.extendComponent({
types() {
const currentType = this.data().type;
return this._types.
- map((type) => {return {
- value: type,
- name: TAPi18n.__(`custom-field-${type}`),
- selected: type === currentType,
- };});
+ map((type) => {return {
+ value: type,
+ name: TAPi18n.__(`custom-field-${type}`),
+ selected: type === currentType,
+ };});
},
isTypeNotSelected(type) {