Browse Source

FIX for mac OS X: proper spacing in tree view

pull/94/head
Alexis de Lattre 8 years ago
parent
commit
c921346ca0
  1. 2
      base_phone/static/src/js/phone_widget.js

2
base_phone/static/src/js/phone_widget.js

@ -129,7 +129,7 @@ openerp.base_phone = function (instance) {
var value = row_data[this.id].value;
if (value && this.widget === 'phone') {
readable_space = formatInternational('', value);
readable_no_break_space = readable_space.replace(/\s/g, '');
readable_no_break_space = readable_space.replace(/\s/g, ' ');
return readable_no_break_space;
}
return res;

Loading…
Cancel
Save