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

no-obscure-array-access fix can duplicate lines #2926

Open
CvX opened this issue Jun 22, 2023 · 0 comments
Open

no-obscure-array-access fix can duplicate lines #2926

CvX opened this issue Jun 22, 2023 · 0 comments
Labels

Comments

@CvX
Copy link
Contributor

CvX commented Jun 22, 2023

Under certain conditions the --fix for no-obscure-array-access can generate duplicated lines.

before:

<Component
  title="<error>"
  id={{@model.0.id}}
  as |value|
></Component>

after:

<Component
  title="<error>"
  id={{get @model "0.id"}}
  as |value|>"
  id={{get @model "0.id"}}
  as |value|>"
  id={{get @model "0.id"}}
  as |value|></Component>

expected:

<Component
  title="<error>"
  id={{get @model "0.id"}}
  as |value|
></Component>
@bmish bmish added the bug label Jun 22, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants