Skip to content

Commit

Permalink
fix export json
Browse files Browse the repository at this point in the history
  • Loading branch information
chuongmep committed Sep 3, 2023
1 parent f922a54 commit d18fa64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RevitElementBipChecker/Viewmodel/ExportJsonCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public void Execute(object parameter)

List<ParameterData> parameterDatas = Viewmodel.frmmain.lsBipChecker.Items.Cast<ParameterData>().ToList();
DataTable dataTable = parameterDatas.ToDataTable();
dataTable.Columns.RemoveAt(0);
dataTable.Columns.Remove("Parameter");
dataTable.WriteJson(out string path);
Process.Start("explorer.exe", path);

Expand Down

0 comments on commit d18fa64

Please sign in to comment.