fix remaining default resx differences, enhance module message with ability to dismiss, fix issue in ConfigManager.RemoveSetting, introduce package registry service
This commit is contained in:
@ -102,7 +102,10 @@ namespace Oqtane.Infrastructure
|
||||
jsonObj[currentSection] = value;
|
||||
break;
|
||||
case "remove":
|
||||
jsonObj.Property(currentSection).Remove();
|
||||
if (jsonObj.Property(currentSection) != null)
|
||||
{
|
||||
jsonObj.Property(currentSection).Remove();
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user