Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,11 @@
"Catalog source": "Catalog source",
"Checking vault status": "Checking vault status",
"Cluster": "Cluster",
"Compute": "Compute",
"Configure secrets for this pattern. File and INI fields are required before install.": "Configure secrets for this pattern. File and INI fields are required before install.",
"Configure secrets that will be injected into Vault for this pattern.": "Configure secrets that will be injected into Vault for this pattern.",
"Confirm Uninstall": "Confirm Uninstall",
"Control plane": "Control plane",
"Current Step": "Current Step",
"Deleting": "Deleting",
"Deletion Progress": "Deletion Progress",
Expand Down Expand Up @@ -51,6 +53,7 @@
"Loading secret template": "Loading secret template",
"Manage Secrets": "Manage Secrets",
"Manage Secrets for {{displayName}}": "Manage Secrets for {{displayName}}",
"More information about tested requirements": "More information about tested requirements",
"Name": "Name",
"Namespace": "Namespace",
"No pattern specified": "No pattern specified",
Expand Down Expand Up @@ -82,7 +85,8 @@
"Target Repo": "Target Repo",
"Target Revision": "Target Revision",
"Target section: {{section}}": "Target section: {{section}}",
"Tested Requirements:": "Tested Requirements:",
"Tested requirements": "Tested requirements",
"Tested requirements details": "Tested requirements details",
"The pattern and all its associated resources have been fully deleted.": "The pattern and all its associated resources have been fully deleted.",
"The vault injection job has been created.": "The vault injection job has been created.",
"This is the sizing that has been tested. The pattern is expected to work on any similarly-sized architecture.": "This is the sizing that has been tested. The pattern is expected to work on any similarly-sized architecture.",
Expand Down
2 changes: 2 additions & 0 deletions console/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
"@types/react": "^17.0.37",
"@types/react-helmet": "^6.1.4",
"@types/react-router-dom": "^5.3.2",
"@types/sanitize-html": "^2.16.1",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"concurrently": "^10.0.3",
Expand Down Expand Up @@ -96,6 +97,7 @@
},
"dependencies": {
"js-yaml": "^4.3.2",
"sanitize-html": "^2.17.7",
"yaml": "^2.8.3"
},
"resolutions": {
Expand Down
21 changes: 21 additions & 0 deletions console/src/components/PatternCard.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
.patterns-operator__pattern-logo {
max-height: 32px;
object-fit: contain;
}

.patterns-operator__card-header {
height: 32px;
}

.patterns-operator__pattern-description {
min-height: 105px;
}

.patterns-operator__card--disabled {
opacity: 0.5;
pointer-events: none;
}

.patterns-operator__card--disabled .patterns-operator__card-actions {
pointer-events: auto;
}
Loading