Skip to content

Commit

Permalink
Changed Id column name to BagId
Browse files Browse the repository at this point in the history
  • Loading branch information
TomSimons committed Feb 6, 2024
1 parent 7b2cb28 commit 915fe7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/Scripts/Layers/Adapters/CSVImportAdapter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ private IEnumerable<Dictionary<string, Color>> ReadCSVColors(string path, int ma
csv.ReadHeader();
while (csv.Read())
{
var id = csv.GetField<string>("Id");
var id = csv.GetField<string>("BagId");
var hexColor = csv.GetField<string>("HexColor");
dictionary[id] = ParseHexColor(hexColor);

Expand Down

0 comments on commit 915fe7b

Please sign in to comment.