Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

List sub incorrectly uses Node Type for Edge #224

Open
michael-doubez opened this issue May 3, 2023 · 0 comments
Open

List sub incorrectly uses Node Type for Edge #224

michael-doubez opened this issue May 3, 2023 · 0 comments

Comments

@michael-doubez
Copy link
Contributor

michael-doubez commented May 3, 2023

In "ogent/ogent/helper/list/sub", subtemplates are called on $.Type instead of $.Scope.Edge.Type:

{{- template "ogent/ogent/helper/list/paginate" $.Type -}}

It should be:

{{- template "ogent/ogent/helper/list/paginate" $.Scope.Edge.Type -}}
{{- if hasTemplate "ogent/ogent/helper/list/filter" }}{{ template "ogent/ogent/helper/list/filter" $.Scope.Edge.Type }}{{ end -}}

The current implementation makes it impossible to override the paginate and filter templates (without a workaround) when trying to use the actual type.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant