Skip to content

Commit b5a54df

Browse files
committed
fix(ui): Show the plugin summary instead of description
This is a fixup for 4a93436. As part of the ORT upgrade the plugin `description` was renamed to `summary`. Signed-off-by: Martin Nonnenmacher <martin.nonnenmacher@doubleopen.io>
1 parent dbb7459 commit b5a54df

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ui/src/components/form/plugin-multi-select-field.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,9 +227,9 @@ export const PluginMultiSelectField = <
227227
<FormLabel className='font-normal'>
228228
{plugin.displayName}
229229
</FormLabel>
230-
{plugin.description != null && (
230+
{plugin.summary != null && (
231231
<MarkdownRenderer
232-
markdown={plugin.description}
232+
markdown={plugin.summary}
233233
className='text-muted-foreground max-w-none pb-4 [&_p]:my-0'
234234
/>
235235
)}

0 commit comments

Comments
 (0)