Skip to content

Commit b8442ad

Browse files
authored
Merge pull request #1368 from cnotv/feature/1199-cards-replacement
Update dashboard / home page to use new state cards
2 parents abfb572 + b212eac commit b8442ad

23 files changed

Lines changed: 2172 additions & 2016 deletions

.vscode/settings.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,8 @@
2929
"**/bower_components": true,
3030
"**/*.code-search": true
3131
},
32-
"typescript.tsdk": "node_modules/typescript/lib"
32+
"typescript.tsdk": "node_modules/typescript/lib",
33+
"cSpell.words": [
34+
"kubewarden"
35+
]
3336
}

jest.setup.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ import cleanHtmlDirective from '@shell/directives/clean-html';
1212
import trimWhitespaceDirective from '@shell/directives/trim-whitespace';
1313
import '@shell/plugins/replaceall';
1414

15+
16+
jest.spyOn(console, 'warn').mockImplementation((warning) => warning.includes('[Vue warn]') ? null : console.log(warning));
17+
1518
// Create a Vue application instance
1619
const vueApp = createApp({});
1720

pkg/kubewarden/components/Dashboard/Card.vue

Lines changed: 0 additions & 160 deletions
This file was deleted.

0 commit comments

Comments
 (0)