Skip to content

Commit

Permalink
Fix htmx_website_with_templatepro
Browse files Browse the repository at this point in the history
  • Loading branch information
danieleteti committed Jan 26, 2025
1 parent aca41b3 commit bf213b3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions samples/htmx_website_with_templatepro/HelpersU.pas
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ interface
uses
System.Rtti;

function MyHelper1(const Value: TValue; const Parameters: TArray<string>): TValue;
function MyHelper2(const Value: TValue; const Parameters: TArray<string>): TValue;
function MyHelper1(const Value: TValue; const Parameters: TArray<TFilterParameter>): TValue;
function MyHelper2(const Value: TValue; const Parameters: TArray<TFilterParameter>): TValue;


procedure TemplateProContextConfigure;
Expand All @@ -17,12 +17,12 @@ implementation
TemplatePro, System.SysUtils;


function MyHelper1(const Value: TValue; const Parameters: TArray<string>): TValue;
function MyHelper1(const Value: TValue; const Parameters: TArray<TFilterParameter>): TValue;
begin
Result := Value.ToString + ' (I''m The MyHelper1)';
end;

function MyHelper2(const Value: TValue; const Parameters: TArray<string>): TValue;
function MyHelper2(const Value: TValue; const Parameters: TArray<TFilterParameter>): TValue;
begin
Result := Value.ToString + ' (I''m The MyHelper2)';
end;
Expand Down

0 comments on commit bf213b3

Please sign in to comment.