Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 13e5453

Browse files
committedMar 8, 2022
updated texts
1 parent e7e79cc commit 13e5453

10 files changed

+28
-28
lines changed
 
Binary file not shown.

‎SentimentAnalysisTool.Web/Views/Records/_UploadFileFormPartial.cshtml

+6-6
Original file line numberDiff line numberDiff line change
@@ -55,29 +55,29 @@
5555
<p>Delete Slang Words? </p>
5656
<div class="form-check form-check-inline">
5757
<input class="form-check-input" type="radio" asp-for="@Model.ShouldDeleteSlangs" value="true" required>
58-
<label class="form-check-label">True</label>
58+
<label class="form-check-label">Yes</label>
5959
</div>
6060
<div class="form-check form-check-inline">
6161
<input class="form-check-input" type="radio" asp-for="@Model.ShouldDeleteSlangs" value="false" required>
62-
<label class="form-check-label">False</label>
62+
<label class="form-check-label">No</label>
6363
</div>
6464
<p class="mt-3">Convert Abbreviations? </p>
6565
<div class="form-check form-check-inline">
6666
<input class="form-check-input" type="radio" asp-for="@Model.ShouldConvertAbbreviations" value="true" required>
67-
<label class="form-check-label">True</label>
67+
<label class="form-check-label">Yes</label>
6868
</div>
6969
<div class="form-check form-check-inline">
7070
<input class="form-check-input" type="radio" asp-for="@Model.ShouldConvertAbbreviations" value="false" required>
71-
<label class="form-check-label">False</label>
71+
<label class="form-check-label">No</label>
7272
</div>
7373
<p class="mt-3">Convert words that are not in wordnet? </p>
7474
<div class="form-check form-check-inline">
7575
<input class="form-check-input" type="radio" asp-for="@Model.ShouldConvertSynonyms" value="true" required>
76-
<label class="form-check-label">True</label>
76+
<label class="form-check-label">Yes</label>
7777
</div>
7878
<div class="form-check form-check-inline">
7979
<input class="form-check-input" type="radio" asp-for="@Model.ShouldConvertSynonyms" value="false" required>
80-
<label class="form-check-label">False</label>
80+
<label class="form-check-label">No</label>
8181
</div>
8282
<p class="mt-3">Subject Matter</p>
8383
<input type="text" class="form-control" name="subjectMatter" />
Binary file not shown.
Binary file not shown.

‎SentimentAnalysisTool.Web/obj/Debug/net5.0/Razor/Views/Records/_CommentsPartial.cshtml.g.cs

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#pragma checksum "C:\Users\Villar\Desktop\SentimentAnalysisToolFrontEnd\SentimentAnalysisTool.Web\Views\Records\_CommentsPartial.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "7207fc2e26e3c6f724060be8a7339adb904b3154"
1+
#pragma checksum "C:\Users\Villar\Desktop\SentimentAnalysisToolFrontEnd\SentimentAnalysisTool.Web\Views\Records\_CommentsPartial.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "0c7367fcfdc434569a33c4f47c21a7833b9f655a"
22
// <auto-generated/>
33
#pragma warning disable 1591
44
[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Records__CommentsPartial), @"mvc.1.0.view", @"/Views/Records/_CommentsPartial.cshtml")]
@@ -40,7 +40,7 @@ namespace AspNetCore
4040
#line default
4141
#line hidden
4242
#nullable disable
43-
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"7207fc2e26e3c6f724060be8a7339adb904b3154", @"/Views/Records/_CommentsPartial.cshtml")]
43+
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"0c7367fcfdc434569a33c4f47c21a7833b9f655a", @"/Views/Records/_CommentsPartial.cshtml")]
4444
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"76e0233095f6598a6f87feba56c16832bdc21bd0", @"/Views/_ViewImports.cshtml")]
4545
public class Views_Records__CommentsPartial : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage<dynamic>
4646
{
@@ -114,7 +114,7 @@ public class Views_Records__CommentsPartial : global::Microsoft.AspNetCore.Mvc.R
114114
#nullable disable
115115
#nullable restore
116116
#line 31 "C:\Users\Villar\Desktop\SentimentAnalysisToolFrontEnd\SentimentAnalysisTool.Web\Views\Records\_CommentsPartial.cshtml"
117-
if (Model[i].CommentPolarity == SentimentType.Negative)
117+
if (Model[i].CommentPolarity.Equals(SentimentType.Negative.ToString()))
118118
{
119119

120120
#line default
@@ -166,7 +166,7 @@ public class Views_Records__CommentsPartial : global::Microsoft.AspNetCore.Mvc.R
166166
#nullable disable
167167
#nullable restore
168168
#line 41 "C:\Users\Villar\Desktop\SentimentAnalysisToolFrontEnd\SentimentAnalysisTool.Web\Views\Records\_CommentsPartial.cshtml"
169-
if (Model[i].CommentPolarity == SentimentType.Negative)
169+
if (Model[i].CommentPolarity.Equals(SentimentType.Negative.ToString()))
170170
{
171171

172172
#line default
@@ -218,7 +218,7 @@ public class Views_Records__CommentsPartial : global::Microsoft.AspNetCore.Mvc.R
218218
#nullable disable
219219
#nullable restore
220220
#line 51 "C:\Users\Villar\Desktop\SentimentAnalysisToolFrontEnd\SentimentAnalysisTool.Web\Views\Records\_CommentsPartial.cshtml"
221-
if (Model[i].CommentPolarity == SentimentType.Negative)
221+
if (Model[i].CommentPolarity.Equals(SentimentType.Negative.ToString()))
222222
{
223223

224224
#line default

‎SentimentAnalysisTool.Web/obj/Debug/net5.0/Razor/Views/Records/_UploadFileFormPartial.cshtml.g.cs

+17-17
Large diffs are not rendered by default.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)
Please sign in to comment.