Skip to content
This repository was archived by the owner on Mar 16, 2021. It is now read-only.

Commit 974d98f

Browse files
author
Stefan Cullmann
committed
MIT License
1 parent accea9e commit 974d98f

File tree

4 files changed

+26
-6
lines changed

4 files changed

+26
-6
lines changed

DnnConnect.PersonaBar.SiteGroups.csproj

+4
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@
126126
<Content Include="admin\personaBar\css\SiteGroups.css" />
127127
<Content Include="admin\personaBar\scripts\SiteGroups.js" />
128128
<Content Include="admin\personaBar\SiteGroups.html" />
129+
<Content Include="License.txt" />
129130
<Content Include="Module.build" />
130131
</ItemGroup>
131132
<ItemGroup>
@@ -142,6 +143,9 @@
142143
<ItemGroup>
143144
<Content Include="web.config" />
144145
</ItemGroup>
146+
<ItemGroup>
147+
<Content Include="README.md" />
148+
</ItemGroup>
145149
<Import Project="$(VSToolsPath)\WebApplications\Microsoft.WebApplication.targets" Condition="'$(VSToolsPath)' != ''" />
146150
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" Condition="false" />
147151
<ProjectExtensions>

License.txt

+19-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,19 @@
1-
DotNetNuke® - http://www.dotnetnuke.com<br/>
2-
Copyright (c) 2002-2016<br/>
3-
by DotNetNuke Corporation<br/>
4-
All Rights Reserved<br/>
1+
Copyright (c) 2017 Stefan Cullmann
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy of
4+
this software and associated documentation files (the "Software"), to deal in
5+
the Software without restriction, including without limitation the rights to
6+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
7+
of the Software, and to permit persons to whom the Software is furnished to do
8+
so, subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in all
11+
copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19+
<<sSOFTWARE.

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
Sitegroups Editor as dnn PersonaBar
1+
Sitegroups Editor as dnn PersonaBar
2+

SiteGroups.Web/src/components/NewGroup.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export default class NewSiteGroup extends React.Component {
3737
<Button
3838
type="primary"
3939
size="large"
40-
disabled={!this.state.siteId}
40+
disabled={!this.state.siteId || this.props.disabled}
4141
onClick={() => this.onNew()}>{Resx.get("NewSiteGroup.Button")}</Button>
4242
</div>
4343
);

0 commit comments

Comments
 (0)