Keeper-Security / keeper-sdk-dotnet

.Net and PowerShell version of Keeper Commander, a CLI and SDK interface for the Keeper Security platform.
https://docs.keeper.io/secrets-manager/commander-cli/using-commander/dotnet-powershell
MIT License
29 stars 20 forks source link

Issue with verifying Custom Datasets fields #129

Open MMerzenich opened 3 weeks ago

MMerzenich commented 3 weeks ago

During the development and with the code, there were some major issues with our own Formulars which we tried to connect and send data. Until I noticed on RecordCommands.cs | Line 216 " recordFields[f.FieldName] = f;"

It created only entries in the array with only the type of field instead of the Name of the field. Which makes it harder to distuingish the mulitple custom text fields.

I suggest to fix this issue only to change line 216 to recordFields[f.FieldLabel], which solved my issue on working with it.