|
|
@@ -696,7 +696,13 @@ namespace WePlatform.WeLib.Scene
|
|
|
columnIndex++;
|
|
|
behavior.SceneCategory = GetTypeNo(row.GenerateCell(columnIndex).StringCellValue ?? "");
|
|
|
columnIndex++;
|
|
|
- behavior.BehaviorTag = row.GenerateCell(columnIndex).StringCellValue ?? "";
|
|
|
+ var behaviorTag = row.GenerateCell(columnIndex).StringCellValue ?? "";
|
|
|
+ behaviorTag= behaviorTag.Trim().Replace(",",",");
|
|
|
+ while (behaviorTag.Contains(",,"))
|
|
|
+ {
|
|
|
+ behaviorTag= behaviorTag.Trim().Replace(",,",",");
|
|
|
+ }
|
|
|
+ behavior.BehaviorTag = behaviorTag;
|
|
|
columnIndex++;
|
|
|
behavior.Description = description;
|
|
|
columnIndex++;
|