Compare commits
4 Commits
v2.1.0(14)
...
v2.1.0(15)
| Author | SHA1 | Date | |
|---|---|---|---|
| 38eaaa9db2 | |||
| bd15ab5106 | |||
| 42004f82a1 | |||
| cf6e11193e |
@@ -30,7 +30,7 @@
|
||||
|
||||
<!-- Versions -->
|
||||
<ApplicationDisplayVersion>2.1.0</ApplicationDisplayVersion>
|
||||
<ApplicationVersion>14</ApplicationVersion>
|
||||
<ApplicationVersion>15</ApplicationVersion>
|
||||
|
||||
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">14.2</SupportedOSPlatformVersion>
|
||||
<!--<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">
|
||||
|
||||
@@ -479,8 +479,8 @@
|
||||
if (ActivityModel.CodAnag == null)
|
||||
{
|
||||
Commesse = await ManageData.GetTable<JtbComt>(x =>
|
||||
x.CodJcom.Contains(searchValue) ||
|
||||
x.Descrizione.Contains(searchValue)
|
||||
x.CodJcom.Contains(searchValue, StringComparison.OrdinalIgnoreCase) ||
|
||||
x.Descrizione.Contains(searchValue, StringComparison.OrdinalIgnoreCase)
|
||||
);
|
||||
}
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user