1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-23 15:29:42 +02:00

fix(ui/box-selector): BE link and use icons standard size [EE-5133] (#8607)

This commit is contained in:
Chaim Lev-Ari 2023-03-19 13:37:35 +01:00 committed by GitHub
parent 76bdf6f220
commit 45def82156
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 44 additions and 29 deletions

View file

@ -9,6 +9,7 @@ export const kubernetes: BoxSelectorOption<'kubernetes'> = {
label: 'Kubernetes',
description: 'Kubernetes manifest format',
value: 'kubernetes',
iconType: 'logo',
};
export const compose: BoxSelectorOption<'compose'> = {
@ -17,4 +18,5 @@ export const compose: BoxSelectorOption<'compose'> = {
label: 'Compose',
description: 'docker-compose format',
value: 'compose',
iconType: 'logo',
};