File tree 3 files changed +7
-3
lines changed
src/main/java/ubc/pavlab/rdp/services
3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -331,6 +331,12 @@ update taxon set ordering = 7 where common_name = "yeast";
331
331
update taxon set ordering = 8 where common_name = " e. coli" ;
332
332
```
333
333
334
+ ### New FAQs
335
+
336
+ There are new categories talking about the now available privacy and sharing options. You can use our updated
337
+ faq file (see the faq.properties file in our github repository), or add the new categories manually to your existing file.
338
+
339
+
334
340
### Start the application
335
341
336
342
After finishing all the steps, you can start your RDMM application again and test if everything works as expected.
Original file line number Diff line number Diff line change 5
5
6
6
<groupId >ubc.pavlab</groupId >
7
7
<artifactId >rdp</artifactId >
8
- <version >1.2.0 </version >
8
+ <version >1.2.1 </version >
9
9
10
10
<parent >
11
11
<groupId >org.springframework.boot</groupId >
Original file line number Diff line number Diff line change @@ -464,8 +464,6 @@ public List<String> getChars() {
464
464
Set <String > chars = new HashSet <>();
465
465
for ( User u : users ) {
466
466
if ( checkCurrentUserCanSee ( u ) ) {
467
- if ( u .getProfile ().getName () != null && !u .getProfile ().getName ().isEmpty () )
468
- chars .add ( u .getProfile ().getName ().substring ( 0 , 1 ).toUpperCase () );
469
467
if ( u .getProfile ().getLastName () != null && !u .getProfile ().getLastName ().isEmpty () )
470
468
chars .add ( u .getProfile ().getLastName ().substring ( 0 , 1 ).toUpperCase () );
471
469
}
You can’t perform that action at this time.
0 commit comments