fix #1503 (Manage Users: There shouldn't be both international flag and no flag)
This commit is contained in:
parent
ed85db8eac
commit
e2ff7813a0
1 changed files with 2 additions and 2 deletions
|
@ -182,7 +182,7 @@ pandora.ui.usersDialog = function() {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
format: function(value) {
|
format: function(value) {
|
||||||
return Ox.Element({
|
return value ? Ox.Element({
|
||||||
element: '<img>',
|
element: '<img>',
|
||||||
tooltip: value
|
tooltip: value
|
||||||
})
|
})
|
||||||
|
@ -195,7 +195,7 @@ pandora.ui.usersDialog = function() {
|
||||||
borderRadius: '4px',
|
borderRadius: '4px',
|
||||||
marginLeft: '-3px',
|
marginLeft: '-3px',
|
||||||
marginTop: 0
|
marginTop: 0
|
||||||
});
|
}) : '';
|
||||||
},
|
},
|
||||||
id: 'location',
|
id: 'location',
|
||||||
operator: '+',
|
operator: '+',
|
||||||
|
|
Loading…
Reference in a new issue