1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-07-06 23:56:13 +02:00

Desktop: Fix error screen shown on opening settings when an incompatible plugin is installed (#11223)

This commit is contained in:
Henry Heino
2024-10-17 14:49:29 -07:00
committed by GitHub
parent 9d8cd1d707
commit efb58c5f40

View File

@ -234,7 +234,7 @@ export default function(props: Props) {
return ( return (
<CellFooter> <CellFooter>
<NeedUpgradeMessage> <NeedUpgradeMessage>
{PluginService.instance().describeIncompatibility(props.manifest)} {PluginService.instance().describeIncompatibility(item.manifest)}
</NeedUpgradeMessage> </NeedUpgradeMessage>
</CellFooter> </CellFooter>
); );