mirror of https://gitee.com/bigwinds/arangodb
Bug fix/gravatar ui fix (#9211)
* fixed editing of users in the web ui when gravatar was enabled * changelog * Update userManagementView.js rm console log
This commit is contained in:
parent
56c969316f
commit
677ffdc692
|
@ -1,6 +1,12 @@
|
||||||
devel
|
devel
|
||||||
-----
|
-----
|
||||||
|
|
||||||
|
* Fixed editing a user within the web UI if the user added a gravatar profile picture
|
||||||
|
|
||||||
|
* allow pregel to select the shard key via `shardKeyAttribute` in pregel start parameters
|
||||||
|
|
||||||
|
* Added --server.jwt-secret-keyfile to arangosh.
|
||||||
|
|
||||||
* fixed internal issue #4040: gharial api is now checking existence of `_from` and `_to` vertices
|
* fixed internal issue #4040: gharial api is now checking existence of `_from` and `_to` vertices
|
||||||
during edge replacements and edge updates
|
during edge replacements and edge updates
|
||||||
|
|
||||||
|
|
|
@ -208,7 +208,12 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($(e.currentTarget).hasClass('tile')) {
|
if ($(e.currentTarget).hasClass('tile')) {
|
||||||
e.currentTarget = $(e.currentTarget).find('.fa');
|
if ($(e.currentTarget).find('.fa').attr('id')) {
|
||||||
|
e.currentTarget = $(e.currentTarget).find('.fa');
|
||||||
|
} else {
|
||||||
|
// check if gravatar icon is enabled
|
||||||
|
e.currentTarget = $(e.currentTarget).find('.icon');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
this.collection.fetch({
|
this.collection.fetch({
|
||||||
|
|
Loading…
Reference in New Issue