mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-07 13:32:17 -07:00
New: Tooltips for remove actions
Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
This commit is contained in:
parent
14867cff7e
commit
4712f7f947
8 changed files with 8 additions and 1 deletions
|
@ -141,6 +141,7 @@ class BlacklistRow extends Component {
|
|||
onPress={this.onDetailsPress}
|
||||
/>
|
||||
<IconButton
|
||||
title="Remove from blacklist"
|
||||
name={icons.REMOVE}
|
||||
kind={kinds.DANGER}
|
||||
onPress={onRemovePress}
|
||||
|
|
|
@ -268,6 +268,7 @@ class QueueRow extends Component {
|
|||
}
|
||||
|
||||
<SpinnerIconButton
|
||||
title="Remove from queue"
|
||||
name={icons.REMOVE}
|
||||
isSpinning={isRemoving}
|
||||
onPress={this.onRemoveQueueItemPress}
|
||||
|
|
|
@ -40,6 +40,7 @@ function ImportArtistRootFolderRow(props) {
|
|||
|
||||
<TableRowCell className={styles.actions}>
|
||||
<IconButton
|
||||
title="Remove root folder"
|
||||
name={icons.REMOVE}
|
||||
onPress={onDeletePress}
|
||||
/>
|
||||
|
|
|
@ -133,6 +133,7 @@ class ArtistHistoryRow extends Component {
|
|||
{
|
||||
eventType === 'grabbed' &&
|
||||
<IconButton
|
||||
title="Mark as failed"
|
||||
name={icons.REMOVE}
|
||||
onPress={this.onMarkAsFailedPress}
|
||||
/>
|
||||
|
|
|
@ -89,6 +89,7 @@ class CustomFilter extends Component {
|
|||
/>
|
||||
|
||||
<SpinnerIconButton
|
||||
title="Remove filter"
|
||||
name={icons.REMOVE}
|
||||
isSpinning={this.state.isDeleting}
|
||||
onPress={this.onRemovePress}
|
||||
|
|
|
@ -44,8 +44,8 @@ class RecentFolderRow extends Component {
|
|||
|
||||
<TableRowCell className={styles.actions}>
|
||||
<IconButton
|
||||
name={icons.REMOVE}
|
||||
title="Remove"
|
||||
name={icons.REMOVE}
|
||||
onPress={this.onRemovePress}
|
||||
/>
|
||||
</TableRowCell>
|
||||
|
|
|
@ -114,6 +114,7 @@ class BackupRow extends Component {
|
|||
/>
|
||||
|
||||
<IconButton
|
||||
title="Delete backup"
|
||||
name={icons.DELETE}
|
||||
onPress={this.onDeletePress}
|
||||
/>
|
||||
|
|
|
@ -224,6 +224,7 @@ class QueuedTaskRow extends Component {
|
|||
{
|
||||
status === 'queued' &&
|
||||
<IconButton
|
||||
title="Removed from task queue"
|
||||
name={icons.REMOVE}
|
||||
onPress={this.onCancelPress}
|
||||
/>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue