Skip to content

Commit bf16cc2

Browse files
authored
fix(capabilities-component): update gardener image url (#117)
* fix(capabilities-component): update gardener image url * Also replace the OpenMCP logo with the one in apeirora * Clean up
1 parent 7bfa980 commit bf16cc2

File tree

6 files changed

+12
-15
lines changed

6 files changed

+12
-15
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,37 @@
1-
# ExampleContent
1+
# Example Content
22

33
![Build Status](https://github.com/openmfp/example-content/actions/workflows/pipeline.yaml/badge.svg)
44
[![REUSE status](
55
https://api.reuse.software/badge/github.com/openmfp/example-content)](https://api.reuse.software/info/github.com/openmfp/example-content)
66

77
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 17.3.8.
88

9-
## Getting started
9+
## Getting Started
1010

1111
Use `npm install` to install all dependencies.
1212
And run `npm start` to start the frontend locally.
1313

14-
## Development server
14+
## Development Server
1515

1616
Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The application will automatically reload if you change any of the source files.
1717

18-
## Code scaffolding
18+
## Code Scaffolding
1919

2020
Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.
2121

2222
## Build
2323

2424
Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory.
2525

26-
## Running unit tests
26+
## Running Unit Tests
2727

2828
Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).
2929

3030
## Running end-to-end tests
3131

3232
Run `ng e2e` to execute the end-to-end tests via a platform of your choice. To use this command, you need to first add a package that implements end-to-end testing capabilities.
3333

34-
## Further help
34+
## Further Help
3535

3636
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
3737

frontend/projects/ui/src/app/overview/enabled-capabilities/enabled-capabilities.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ import { SmallCardComponent } from '../../shared/small-card/small-card.component
1313
export class EnabledCapabilitiesComponent {
1414
readonly capabilities: SmallCardDataModel[] = [
1515
{
16-
image: 'https://d.ing.gardener-op.mfp-dev.shoot.canary.k8s-hana.ondemand.com/static/assets/logo.svg',
16+
image: 'https://dashboard.garden.live.k8s.ondemand.com/static/assets/logo.svg',
1717
name: 'Gardener',
1818
},
1919
{
2020
image: 'https://avatars.githubusercontent.com/u/147836484?s=200&v=4',
2121
name: 'Iron Core',
2222
},
2323
{
24-
image: 'https://content.d1.openmfp.dxp.k8s.ondemand.com/ui/wc/assets/openmcp.png',
24+
image: 'https://ocm.software/images/logo-image.png',
2525
name: 'OpenMCP',
2626
},
2727
];

frontend/projects/ui/src/app/providers/providers.component.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { Component } from '@angular/core';
2-
import {DynamicPageModule, FormModule, FundamentalNgxCoreModule, IllustratedMessageModule} from "@fundamental-ngx/core";
3-
import {CommonModule} from "@angular/common";
2+
import { FundamentalNgxCoreModule } from "@fundamental-ngx/core";
43

54
@Component({
65
selector: 'app-providers',

frontend/projects/ui/src/app/services/extension.schema.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
2-
31
export interface Account {
42
id: string;
53
name: string;

frontend/projects/ui/src/app/showcase/showcase.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<ui5-card class="card">
2-
<ui5-card-header slot="header" title-text="Virtualtree navigation example"
2+
<ui5-card-header slot="header" title-text="Virtual Tree Navigation Example"
33
subtitle-text="Click below to test the navigation">
44
</ui5-card-header>
55
<div class="content">

frontend/projects/wc/src/app/enabled-capabilities/enabled-capabilities.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ import { SmallCardComponent } from '../small-card/small-card.component';
1212
export class EnabledCapabilitiesComponent {
1313
readonly capabilities: SmallCardDataModel[] = [
1414
{
15-
image: 'https://d.ing.gardener-op.mfp-dev.shoot.canary.k8s-hana.ondemand.com/static/assets/logo.svg',
15+
image: 'https://dashboard.garden.live.k8s.ondemand.com/static/assets/logo.svg',
1616
name: 'Gardener',
1717
},
1818
{
1919
image: 'https://avatars.githubusercontent.com/u/147836484?s=200&v=4',
2020
name: 'Iron Core',
2121
},
2222
{
23-
image: 'https://content.d1.openmfp.dxp.k8s.ondemand.com/ui/wc/assets/openmcp.png',
23+
image: 'https://ocm.software/images/logo-image.png',
2424
name: 'OpenMCP',
2525
},
2626
];

0 commit comments

Comments
 (0)