Skip to content

Commit a88577e

Browse files
committed
Cleanups.
1 parent ccf08bd commit a88577e

File tree

2 files changed

+4
-14
lines changed

2 files changed

+4
-14
lines changed

js/view-action/action-filter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ return Backbone.View.extend({
297297
h='<select id="field" class="form-control"><option value=""></option>';
298298
for (var i=0,iMax=fields.length;i<iMax;i++){
299299
f=fields[i];
300-
h+=uiInput.option(f.id, f.label || f.labelList);
300+
h+=uiInput.option(f.id, f.label || f.labelList || ('('+f.id+')'));
301301
}
302302
h+='</select>';
303303
this._fList=h;

ui-models/contacts.js

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -419,19 +419,9 @@ uiModels.contact = {
419419
list: contact_LOVs.categories
420420
},
421421
{
422-
type: 'text', id: 'custom1', attribute: 'custom1',
423-
label: 'Custom 1', maxLength: 250,
424-
width: 100
425-
},
426-
{
427-
type: 'text', id: 'custom2', attribute: 'custom2',
428-
label: 'Custom 2', maxLength: 250,
429-
width: 100
430-
},
431-
{
432-
type: 'text', id: 'custom3', attribute: 'custom3',
433-
label: 'Custom 3', maxLength: 250,
434-
width: 100
422+
type: 'textmultiline', id: 'notes', attribute: 'notes',
423+
label: 'Notes', maxLength: 250,
424+
width: 100, height:6
435425
}
436426
]
437427
}

0 commit comments

Comments
 (0)