fix: add ReleaseHash to the naming dialog examples for anime

pull/6573/head
Alanoll 3 months ago
parent 957a9d594e
commit 7624cddad2

@ -153,6 +153,10 @@ const otherTokens = [
{ token: '{Custom Formats}', example: 'iNTERNAL' }
];
const otherAnimeTokens = [
{ token: '{Release Hash}', example: 'ABCDEFGH' }
];
const originalTokens = [
{ token: '{Original Title}', example: 'The.Series.Title\'s!.S01E01.WEBDL.1080p.x264-EVOLVE' },
{ token: '{Original Filename}', example: 'the.series.title\'s!.s01e01.webdl.1080p.x264-EVOLVE' }
@ -534,6 +538,24 @@ class NamingModal extends Component {
}
)
}
{
anime && otherAnimeTokens.map(({ token, example }) => {
return (
<NamingOption
key={token}
name={name}
value={value}
token={token}
example={example}
tokenSeparator={tokenSeparator}
tokenCase={tokenCase}
onPress={this.onOptionPress}
/>
);
}
)
}
</div>
</FieldSet>

Loading…
Cancel
Save