Skip to content

Commit

Permalink
Fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
Tschrock authored Dec 17, 2018
1 parent 0dce18d commit 7c7c1c5
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,10 @@ protected override void OnLoad( EventArgs e )
.OrderBy( l => l.PersonId )
.ThenBy( l => l.Order )
.ToList().ForEach( l => l.LabelFile = urlRoot + l.LabelFile.Replace( "GetFile.ashx", "NP_GetCheckinLabel.ashx" ) );
printFromClient.Take( printFromClient.Count() - 1 ).ToList().ForEach( l => l.LabelFile += "&delaycut=T" ).ForEach( l => l.LabelKey += "-nocut" );
printFromClient.Take( printFromClient.Count() - 1 ).ToList().ForEach( l => {
l.LabelFile += "&delaycut=T";
l.LabelKey += "-nocut";
} );
AddLabelScript( printFromClient.ToJson() );
}

Expand Down

0 comments on commit 7c7c1c5

Please sign in to comment.