Skip to content

Commit b9b7043

Browse files
authored
Merge pull request #89 from Lombiq/issue/OSOE-815-combined
OSOE-815: Fixing analyzer violations
2 parents 3aa327a + 19c50d0 commit b9b7043

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Lombiq.ChartJs.Samples/Controllers/SampleController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ public async Task<IActionResult> History(string incomeTag = null, string expense
121121
return View(new HistoryViewModel
122122
{
123123
Labels = transactions.Keys
124-
.OrderBy(item => item)
124+
.Order()
125125
.Select(item => item.ToString("MMMM yyyy", CultureInfo.InvariantCulture)),
126126
// You can find more detailed description about dataset here:
127127
// https://www.chartjs.org/docs/2.9.4/charts/line.html#dataset-properties

renovate.json5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
'$schema': 'https://docs.renovatebot.com/renovate-schema.json',
33
'extends': ['github>Lombiq/renovate-config:default-orchard-core-submodule.json5'],
4-
"packageRules": [
4+
packageRules: [
55
{
66
groupName: 'Chart.js',
77
matchPackageNames: [

0 commit comments

Comments
 (0)