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

fix(textarea): fix data corruption after multi-line input #318

Merged
merged 1 commit into from
Feb 5, 2023

Commits on Feb 5, 2023

  1. fix(textarea): fix data corruption after multi-line input

    Previously, when inserting multiple lines of input at once, the underlying
    Go data array was incorrectly shared in memory across multiple rows
    of the textarea. This was causing input corruption, where a user trying
    to modify one line would see their text added on the next line as well.
    
    This patch fixes it.
    knz committed Feb 5, 2023
    Configuration menu
    Copy the full SHA
    62d2cb4 View commit details
    Browse the repository at this point in the history