Skip to content

Commit 6236956

Browse files
committed
fix(QuotaSelect): Fix quota usage tooltip
Signed-off-by: provokateurin <[email protected]>
1 parent 250b4f6 commit 6236956

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

src/settings/QuotaSelect.tsx

+1-9
Original file line numberDiff line numberDiff line change
@@ -89,15 +89,7 @@ export class QuotaSelect extends Component<QuotaSelectProps, QuotaSelectState> {
8989
style={{width: usedPercentage + '%'}}/>
9090
<select className="editselect"
9191
onChange={this.onSelect}
92-
ref={(ref) => {
93-
ref && $(ref).tooltip({
94-
title: t('settings', '{size} used', {size: humanSize}, 0, {escape: false}).replace('&lt;', '<'),
95-
delay: {
96-
show: 100,
97-
hide: 0
98-
}
99-
});
100-
}}
92+
title={t('settings', '{size} used', {size: humanSize}, 0, {escape: false}).replace('&lt;', '<')}
10193
value={this.props.value}>
10294
{options}
10395
<option value="other">

0 commit comments

Comments
 (0)