Skip to content

Commit

Permalink
Minor updates
Browse files Browse the repository at this point in the history
  • Loading branch information
isc-lperezra committed Dec 21, 2024
1 parent 84fcd6d commit 8fa379a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion encoder-ui/src/app/analyzer/analyzer.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export class AnalyzerComponent {
var textHTML = this.textToAnalyze?.value;
var textOriginal = textHTML;
var textToProcess = this.textToAnalyze?.value.split(".").filter(Boolean);
var piecedTextToProcess: any[] = textToProcess;
var piecedTextToProcess: any[] = [textOriginal];

var forReading = 100/(piecedTextToProcess.length);
this.totalReceived = 0;
Expand Down

0 comments on commit 8fa379a

Please sign in to comment.