Github user jmuehlner commented on a diff in the pull request:
https://github.com/apache/guacamole-client/pull/265#discussion_r174344419
--- Diff: guacamole/pom.xml ---
@@ -388,9 +388,14 @@
<dependency>
<groupId>org.webjars.bower</groupId>
<artifactId>angular-translate-loader-static-files</artifactId>
- <version>2.8.0</version>
+ <version>2.16.0</version>
<scope>runtime</scope>
</dependency>
+ <dependency>
+ <groupId>org.webjars.bower</groupId>
+ <artifactId>angular-toArrayFilter</artifactId>
--- End diff --
The `orderBy` filter no longer supports objects, which necessitates
transforming any object into an array before using it - that's what this new
dependency is for.
---