Merge pull request #6459 from matrix-org/t3chguy/eslint1

This commit is contained in:
Michael Telatynski 2021-07-23 16:23:38 +01:00 committed by GitHub
commit e78a1adb6f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
92 changed files with 704 additions and 347 deletions

View file

@ -54,9 +54,13 @@ export default class Waveform extends React.PureComponent<IProps, IState> {
'mx_Waveform_bar': true,
'mx_Waveform_bar_100pct': isCompleteBar,
});
return <span key={i} style={{
"--barHeight": h,
} as WaveformCSSProperties} className={classes} />;
return <span
key={i}
style={{
"--barHeight": h,
} as WaveformCSSProperties}
className={classes}
/>;
}) }
</div>;
}