We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
biome v 1.2.2
See code.
document .querySelector(`[data-field-id="customModel-container"]`) .querySelector('input').value = document .querySelector(`[data-field-id="${modelField.id}-field"]`) .querySelector('input').value;
error is:
✖ value is assigned to itself. 3694 │ .querySelector('input').value = document 3695 │ .querySelector(`[data-field-id="${modelField.id}-field"]`) > 3696 │ .querySelector('input').value; │ ^^^^^ 3697 │ }); 3698 │ }, ℹ This is where is assigned. 3692 │ document 3693 │ .querySelector(`[data-field-id="customModel-container"]`) > 3694 │ .querySelector('input').value = document │ ^^^^^ 3695 │ .querySelector(`[data-field-id="${modelField.id}-field"]`) 3696 │ .querySelector('input').value;
That's not a self-assignment though.
The text was updated successfully, but these errors were encountered:
ematipico
Successfully merging a pull request may close this issue.
Environment information
What happened?
See code.
error is:
Expected result
That's not a self-assignment though.
Code of Conduct
The text was updated successfully, but these errors were encountered: