Skip to content

Commit

Permalink
Improve warning message in the search page
Browse files Browse the repository at this point in the history
Closes #334
  • Loading branch information
VoltanFr committed May 3, 2023
1 parent dc5f683 commit 3b317df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion MemCheck.WebUI/MemCheck.WebUI.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<VersionPrefix>0.172.1</VersionPrefix>
<VersionPrefix>0.173.0</VersionPrefix>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion MemCheck.WebUI/wwwroot/js/Search/NewSearch.js
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,7 @@ const searchApp = Vue.createApp({
if (selectedCardIds.length === 1)
mesg += ` ${this.allStaticData.localizedText.alertDeleteCardsPart2Single}`;
else
mesg += `${selectedCardIds.length} ${this.allStaticData.localizedText.alertDeleteCardsPart2Plural}`;
mesg += ` ${selectedCardIds.length} ${this.allStaticData.localizedText.alertDeleteCardsPart2Plural}`;
if (confirm(mesg)) {
this.loadingQuery = true;

Expand Down

0 comments on commit 3b317df

Please sign in to comment.