mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Fixed buttons for DNS records.
The order of the Add and Delete buttons has been reversed to be consistent with those in other facets.
This commit is contained in:
parent
e5cda47447
commit
f520829480
@ -324,15 +324,15 @@ IPA.records_facet = function (spec){
|
||||
|
||||
|
||||
IPA.action_button({
|
||||
'label': IPA.messages.buttons.add,
|
||||
'icon': 'ui-icon-plus',
|
||||
'click': add_click
|
||||
label: IPA.messages.buttons.remove,
|
||||
icon: 'ui-icon-trash',
|
||||
click: function(){ delete_records(records_table); }
|
||||
}).appendTo(action_controls);
|
||||
|
||||
IPA.action_button({
|
||||
'label': IPA.messages.buttons.remove,
|
||||
'icon': 'ui-icon-trash',
|
||||
'click': function(){delete_records(records_table);}
|
||||
label: IPA.messages.buttons.add,
|
||||
icon: 'ui-icon-plus',
|
||||
click: add_click
|
||||
}).appendTo(action_controls);
|
||||
|
||||
div.append('<span class="records-buttons"></span>');
|
||||
|
Loading…
Reference in New Issue
Block a user