++
This commit is contained in:
@@ -24,10 +24,10 @@ namespace zero.Core.Extensions
|
||||
HashSet<string> ids = new HashSet<string>();
|
||||
ids.Add(appId);
|
||||
|
||||
//if (includeShared)
|
||||
//{
|
||||
// ids.Add(Constants.Database.SharedAppId);
|
||||
//}
|
||||
if (includeShared)
|
||||
{
|
||||
ids.Add(Constants.Database.SharedAppId);
|
||||
}
|
||||
|
||||
return source.Where(item => (item as IAppAwareEntity).AppId.In(ids));
|
||||
}
|
||||
@@ -48,10 +48,10 @@ namespace zero.Core.Extensions
|
||||
HashSet<string> ids = new HashSet<string>();
|
||||
ids.Add(scope.AppId);
|
||||
|
||||
//if (scope.IncludeShared)
|
||||
//{
|
||||
// ids.Add(Constants.Database.SharedAppId);
|
||||
//}
|
||||
if (scope.IncludeShared)
|
||||
{
|
||||
ids.Add(Constants.Database.SharedAppId);
|
||||
}
|
||||
|
||||
return source.Where(item => ((IAppAwareEntity)item).AppId.In(ids));
|
||||
}
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
},
|
||||
title: {
|
||||
type: String,
|
||||
default: '@ui.back'
|
||||
default: ''
|
||||
},
|
||||
disabled: Boolean
|
||||
},
|
||||
|
||||
@@ -136,6 +136,7 @@
|
||||
&.is-disabled
|
||||
{
|
||||
cursor: not-allowed;
|
||||
opacity: .5;
|
||||
}
|
||||
|
||||
&.is-active:before
|
||||
|
||||
Reference in New Issue
Block a user