Default index-as = i
This commit is contained in:
parent
f7245030cb
commit
dd205ea693
1 changed files with 1 additions and 1 deletions
|
@ -180,7 +180,7 @@ class Renderer {
|
|||
var indexAsAttribute = element.attributes
|
||||
.firstWhere((a) => a.name == 'index-as', orElse: () => null);
|
||||
var alias = asAttribute?.value?.compute(scope)?.toString() ?? 'item';
|
||||
var indexAs = indexAsAttribute?.value?.compute(scope)?.toString() ?? 'item';
|
||||
var indexAs = indexAsAttribute?.value?.compute(scope)?.toString() ?? 'i';
|
||||
var otherAttributes = element.attributes.where(
|
||||
(a) => a.name != 'for-each' && a.name != 'as' && a.name != 'index-as');
|
||||
Element strippedElement;
|
||||
|
|
Loading…
Reference in a new issue