mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
fix order of subtypes on a cardview
This commit is contained in:
parent
09f0c9ad97
commit
ea14f9c361
1 changed files with 1 additions and 1 deletions
|
@ -987,7 +987,7 @@ public class CardView extends SimpleCardView {
|
|||
}
|
||||
if (!getSubTypes().isEmpty()) {
|
||||
type.append(" - ");
|
||||
type.append(String.join(" ", getSubTypes().stream().map(p->p.toString()).collect(Collectors.toSet())));
|
||||
type.append(String.join(" ", getSubTypes().stream().map(SubType::toString).collect(Collectors.toList())));
|
||||
}
|
||||
return type.toString();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue