File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed
js/apps/system/_admin/aardvark/APP/frontend/js/views Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 1
1
devel
2
2
-----
3
3
4
+ * Fixed editing a user within the web UI if the user added a gravatar profile picture
5
+
6
+ * allow pregel to select the shard key via `shardKeyAttribute` in pregel start parameters
7
+
8
+ * Added --server.jwt-secret-keyfile to arangosh.
9
+
4
10
* fixed internal issue #4040: gharial api is now checking existence of `_from` and `_to` vertices
5
11
during edge replacements and edge updates
6
12
Original file line number Diff line number Diff line change 208
208
}
209
209
210
210
if ( $ ( e . currentTarget ) . hasClass ( 'tile' ) ) {
211
- e . currentTarget = $ ( e . currentTarget ) . find ( '.fa' ) ;
211
+ if ( $ ( e . currentTarget ) . find ( '.fa' ) . attr ( 'id' ) ) {
212
+ e . currentTarget = $ ( e . currentTarget ) . find ( '.fa' ) ;
213
+ } else {
214
+ // check if gravatar icon is enabled
215
+ e . currentTarget = $ ( e . currentTarget ) . find ( '.icon' ) ;
216
+ }
212
217
}
213
218
214
219
this . collection . fetch ( {
You can’t perform that action at this time.
0 commit comments