You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Readarr/frontend/src/AddArtist/ArtistMonitoringOptionsPopo...

47 lines
1.2 KiB

import React from 'react';
import DescriptionList from 'Components/DescriptionList/DescriptionList';
import DescriptionListItem from 'Components/DescriptionList/DescriptionListItem';
function ArtistMonitoringOptionsPopoverContent() {
return (
<DescriptionList>
<DescriptionListItem
title="All Books"
data="Monitor all books"
/>
<DescriptionListItem
title="Future Books"
data="Monitor books that have not released yet"
/>
<DescriptionListItem
title="Missing Books"
data="Monitor books that do not have files or have not released yet"
/>
<DescriptionListItem
title="Existing Books"
data="Monitor books that have files or have not released yet"
/>
<DescriptionListItem
title="First Book"
data="Monitor the first book. All other books will be ignored"
/>
<DescriptionListItem
title="Latest Book"
data="Monitor the latest book and future books"
/>
<DescriptionListItem
title="None"
data="No books will be monitored"
/>
</DescriptionList>
);
}
export default ArtistMonitoringOptionsPopoverContent;