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
Looking at the server code for the nutrient levels, $match is 20 and the icon is nutrient-level-$nid-medium.svg when $value is $high:
$match
20
nutrient-level-$nid-medium.svg
$value
$high
elsif ($value <= $high) { $match = 20 + 60 * ($high - $value) / ($high - $low); $attribute_ref->{icon_url} = "$static_subdomain/images/attributes/nutrient-level-$nid-medium.svg"; }
However, on the client, match == 20 is mapped to lowestMatchResult.
match == 20
lowestMatchResult
This seems to be inconsistent.
The text was updated successfully, but these errors were encountered:
The scoring system was rewritten, so I believe we can close @slava-sh @stephanegigandet
Sorry, something went wrong.
stephanegigandet
No branches or pull requests
What
Looking at the server code for the nutrient levels,
$match
is20
and the icon isnutrient-level-$nid-medium.svg
when$value
is$high
:However, on the client,
match == 20
is mapped tolowestMatchResult
.This seems to be inconsistent.
Part of
The text was updated successfully, but these errors were encountered: