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
A long result after cognate analysis should be skipped. We should see:
Skipping text output, too long.
But this does not occur. May be this is correct after some changes in code. Please check it.
You can get steps to reproduce from the sctipt: https://gitlab.ispras.ru/modis-tests/lingvodoc/-/blob/master/frontend/tests/test_cognate_suggest_match_off.py
From frontend code src/components/CognateAnalysisModal/index.js:
src/components/CognateAnalysisModal/index.js
if (result.length > 1048576 && (this.props.mode === "suggestions" || this.props.mode === "multi_suggestions")) { result = this.context("Skipping text output, too long."); }
The text was updated successfully, but these errors were encountered:
vmonakhov
No branches or pull requests
A long result after cognate analysis should be skipped. We should see:
But this does not occur. May be this is correct after some changes in code. Please check it.
You can get steps to reproduce from the sctipt:
https://gitlab.ispras.ru/modis-tests/lingvodoc/-/blob/master/frontend/tests/test_cognate_suggest_match_off.py
From frontend code
src/components/CognateAnalysisModal/index.js
:The text was updated successfully, but these errors were encountered: