Skip to content
Snippets Groups Projects
Commit 005e38ef authored by Ruben Bimberg's avatar Ruben Bimberg :computer:
Browse files

Merge branch 'staging' into tag-cloud-administration

parents 6b8923cf b3c7402b
Branches
Tags
No related merge requests found
......@@ -85,7 +85,9 @@ export class SpacyDialogComponent implements OnInit, AfterContentInit {
)
.subscribe(words => {
this.keywords = words;
this.keywords.sort((a, b) => a.word.localeCompare(b.word));
this.hasKeywordsFromSpacy = this.keywords.length > 0;
//deep copy
this.keywordsOriginal = [...words];
for (let i = 0; i < this.keywordsOriginal.length; i++) {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment