sublime-jsx icon indicating copy to clipboard operation
sublime-jsx copied to clipboard

Fix highlight with closed block expression on attr

Open A-312 opened this issue 4 years ago • 1 comments

fix: #2

  render() {
    return (
      <div shadowSize={object = {"lol"}; React.Component('test')} shadowSize={2} shadowSize={2}>
        whatever
      </diddd>
    );
  }

Before

image

After

image

A-312 avatar May 12 '20 05:05 A-312