Skip to content

Commit

Permalink
Merge pull request #3459 from nextcloud/fix/quotaselect/usage-tooltip…
Browse files Browse the repository at this point in the history
…-stable28

[stable28] fix(QuotaSelect): Fix quota usage tooltip
  • Loading branch information
provokateurin authored Dec 4, 2024
2 parents 8a782c0 + 836a4a8 commit 0ab053b
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions src/settings/QuotaSelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,15 +85,7 @@ export class QuotaSelect extends Component<QuotaSelectProps, QuotaSelectState> {
style={{width: usedPercentage + '%'}}/>
<select className="editselect"
onChange={this.onSelect}
ref={(ref) => {
ref && $(ref).tooltip({
title: t('settings', '{size} used', {size: humanSize}, 0, {escape: false}).replace('&lt;', '<'),
delay: {
show: 100,
hide: 0
}
});
}}
title={t('settings', '{size} used', {size: humanSize}, 0, {escape: false}).replace('&lt;', '<')}
value={this.props.value}>
{options}
<option value="other">
Expand Down

0 comments on commit 0ab053b

Please sign in to comment.