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

Finish merge with staging

parent c53ea0f6
Branches
Tags
No related merge requests found
......@@ -121,9 +121,12 @@ export class CreateCommentComponent implements OnInit, OnDestroy {
.subscribe((result) => {
if (result.isAcceptable) {
const commentLang = this.languagetoolService.mapLanguageToSpacyModel(result.result.language.code as Language);
const selectedLangExtend = this.selectedLang[2] === '-' ? this.selectedLang.substr(0, 2) : this.selectedLang;
// Store language if it was auto-detected
if(this.selectedLang === 'auto') {
if (this.selectedLang === 'auto') {
comment.language = Comment.mapModelToLanguage(commentLang);
} else if (CommentLanguage[selectedLangExtend]) {
comment.language = CommentLanguage[selectedLangExtend];
}
const dialogRef = this.dialog.open(SpacyDialogComponent, {
data: {
......
import {AfterContentInit, Component, Inject, OnInit, ViewChild} from '@angular/core';
import { AfterContentInit, Component, Inject, OnInit, ViewChild } from '@angular/core';
import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material/dialog';
import { CreateCommentComponent } from '../create-comment/create-comment.component';
......@@ -6,7 +6,7 @@ import { SpacyService, Model } from '../../../../services/http/spacy.service';
import { LanguagetoolService } from '../../../../services/http/languagetool.service';
import { Comment } from '../../../../models/comment';
import { map } from 'rxjs/operators';
import {DialogActionButtonsComponent} from "../../dialog/dialog-action-buttons/dialog-action-buttons.component";
import { DialogActionButtonsComponent } from '../../dialog/dialog-action-buttons/dialog-action-buttons.component';
export interface Keyword {
word: string;
......
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