mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-20 21:54:25 -04:00
Update UI Packages
Align with Lidarr
This commit is contained in:
@@ -27,26 +27,26 @@ class MetadataProfile extends Component {
|
||||
|
||||
onEditMetadataProfilePress = () => {
|
||||
this.setState({ isEditMetadataProfileModalOpen: true });
|
||||
}
|
||||
};
|
||||
|
||||
onEditMetadataProfileModalClose = () => {
|
||||
this.setState({ isEditMetadataProfileModalOpen: false });
|
||||
}
|
||||
};
|
||||
|
||||
onDeleteMetadataProfilePress = () => {
|
||||
this.setState({
|
||||
isEditMetadataProfileModalOpen: false,
|
||||
isDeleteMetadataProfileModalOpen: true
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
onDeleteMetadataProfileModalClose = () => {
|
||||
this.setState({ isDeleteMetadataProfileModalOpen: false });
|
||||
}
|
||||
};
|
||||
|
||||
onConfirmDeleteMetadataProfile = () => {
|
||||
this.props.onConfirmDeleteMetadataProfile(this.props.id);
|
||||
}
|
||||
};
|
||||
|
||||
onCloneMetadataProfilePress = () => {
|
||||
const {
|
||||
@@ -55,7 +55,7 @@ class MetadataProfile extends Component {
|
||||
} = this.props;
|
||||
|
||||
onCloneMetadataProfilePress(id);
|
||||
}
|
||||
};
|
||||
|
||||
//
|
||||
// Render
|
||||
|
||||
Reference in New Issue
Block a user