We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bf5864 commit 2f581afCopy full SHA for 2f581af
1 file changed
src/ViewModels/ExtensionViewModel.cs
@@ -280,7 +280,7 @@ await ZipUtility.CompressDirectoryAsync(
280
ConfigModel.FileSize = fileInfo.Length;
281
282
// Serialize manifest to JSON
283
- var manifestJson = JsonConvert.SerializeObject(ConfigModel, Formatting.Indented);
+ var manifestJson = JsonConvert.SerializeObject(ConfigModel);
284
if (!string.IsNullOrEmpty(manifestJson))
285
{
286
// Add manifest.json to the zip file
@@ -347,9 +347,6 @@ private async Task AddCustomPropertyAction()
347
// Clear input fields
348
NewCustomPropertyKey = string.Empty;
349
NewCustomPropertyValue = string.Empty;
350
-
351
- // Notify command to re-evaluate its CanExecute state
352
- AddCustomPropertyCommand.NotifyCanExecuteChanged();
353
}
354
catch (Exception ex)
355
0 commit comments