Skip to content

Commit a5dfc87

Browse files
committed
Cherrypick fix for #103 couter clickUrl
1 parent 5c1c359 commit a5dfc87

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

build/build.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
param ($version = "14.0.0",$versionSuffix = "")
1+
param ($version = "14.0.1",$versionSuffix = "")
22
# Params
33
# version = major.minor.patch
44
# versionSuffix = eg -beta1, -rc1 (should include leading -). Leave empty string if not a pre-release.

src/Our.Umbraco.TheDashboard/Counters/Implement/MembersNewLastWeekDashboardCounter.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public DashboardCounterModel GetModel(IScope scope)
1919
{
2020
LocalizationKey = "theDashboard_newMembersLastWeek",
2121
Count = count,
22-
ClickUrl = "section/member-management/workspace/member-root",
22+
ClickUrl = "section/member-management",
2323
Style = DashboardCounterModel.CounterStyles.Selected
2424
};
2525
}

src/Our.Umbraco.TheDashboard/Counters/Implement/MembersTotalDashboardCounter.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public DashboardCounterModel GetModel(IScope scope)
1616
{
1717
LocalizationKey = "theDashboard_membersOnWebsite",
1818
Count = count,
19-
ClickUrl = "section/member-management/workspace/member-root",
19+
ClickUrl = "section/member-management",
2020
Style = DashboardCounterModel.CounterStyles.Selected
2121
};
2222
}

src/Our.Umbraco.TheDashboard/Our.Umbraco.TheDashboard.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
<PackageReadmeFile>README.md</PackageReadmeFile>
2222
<PackageLicenseExpression>MIT</PackageLicenseExpression>
2323
<AssemblyVersion>1.0.0</AssemblyVersion>
24-
<Version>14.0.0</Version>
25-
<PackageVersion>14.0.0</PackageVersion>
26-
<InformationalVersion>14.0.0</InformationalVersion>
24+
<Version>14.0.1</Version>
25+
<PackageVersion>14.0.1</PackageVersion>
26+
<InformationalVersion>14.0.1</InformationalVersion>
2727
<PackageIcon>icon.png</PackageIcon>
2828
</PropertyGroup>
2929
<ItemGroup>

src/Our.Umbraco.TheDashboard/wwwroot/App_Plugins/Our.Umbraco.TheDashboard/umbraco-package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"$schema": "../../../../Our.Umbraco.TheDashboard.Testsite/umbraco-package-schema.json",
33
"name": "TheDashboard",
4-
"version": "14.0.0",
4+
"version": "14.0.1",
55
"extensions": [
66
{
77
"type": "entryPoint",
88
"alias": "TheDashboard.EntryPoint",
99
"name": "TheDashboard Entry Point",
10-
"js": "/App_Plugins/Our.Umbraco.TheDashboard/dist/the-dashboard-umbraco.js?v1400",
10+
"js": "/App_Plugins/Our.Umbraco.TheDashboard/dist/the-dashboard-umbraco.js?v1401",
1111
"weight": 13000
1212
}
1313
]

0 commit comments

Comments
 (0)