mirror of https://github.com/status-im/consul.git
Changes the default ACL token type to "client" in web UI. (#3246)
* Changes the default ACL token type to "client". * Updates built-in web assets.
This commit is contained in:
parent
b01b3f6990
commit
aa11956d63
File diff suppressed because one or more lines are too long
|
@ -314,7 +314,7 @@ App.AclsController = Ember.ArrayController.extend({
|
|||
filterText: "Filter by name or ID",
|
||||
searchBar: true,
|
||||
newAclButton: true,
|
||||
types: ["management", "client"],
|
||||
types: ["client", "management"],
|
||||
|
||||
dc: Ember.computed.alias("controllers.dc"),
|
||||
items: Ember.computed.alias("acls"),
|
||||
|
@ -384,7 +384,7 @@ App.AclsShowController = Ember.ObjectController.extend({
|
|||
needs: ["dc", "acls"],
|
||||
dc: Ember.computed.alias("controllers.dc"),
|
||||
isLoading: false,
|
||||
types: ["management", "client"],
|
||||
types: ["client", "management"],
|
||||
|
||||
actions: {
|
||||
set: function() {
|
||||
|
|
Loading…
Reference in New Issue