File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -205,15 +205,15 @@ const ConfigurationModal = ({
205
205
>
206
206
{ catalogItem . description }
207
207
</ Typography >
208
- { catalogItem . source !== undefined && (
208
+ { catalogItem . readme !== undefined && (
209
209
< Typography variant = "body2" sx = { { mt : 2 , color : 'text.secondary' } } >
210
210
Repository:{ ' ' }
211
211
< Link
212
- onClick = { ( ) => client . host . openExternal ( catalogItem . source || '' ) }
213
- href = { catalogItem . source || '' }
212
+ onClick = { ( ) => client . host . openExternal ( catalogItem . readme || '' ) }
213
+ href = { catalogItem . readme || '' }
214
214
target = "_blank"
215
215
>
216
- { catalogItem . source || '' }
216
+ { catalogItem . readme || '' }
217
217
< Launch />
218
218
</ Link >
219
219
</ Typography >
@@ -246,7 +246,7 @@ const ConfigurationModal = ({
246
246
}
247
247
color = "error"
248
248
>
249
- Configure
249
+ Configuration
250
250
</ Badge >
251
251
}
252
252
/>
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ export interface CatalogItemWithName extends CatalogItem {
25
25
*/
26
26
export interface CatalogItemRichened extends CatalogItem {
27
27
name : string ;
28
+ readme ?: string ;
28
29
secrets : { name : string , assigned : boolean } [ ] ;
29
30
configValue : { [ key : string ] : any } ;
30
31
configSchema : any ;
You can’t perform that action at this time.
0 commit comments