Skip to content

Commit

Permalink
Fix busola rendering problem (kyma-project#1321) (kyma-project#1322)
Browse files Browse the repository at this point in the history
  • Loading branch information
kwiatekus authored Dec 17, 2024
1 parent ff935a3 commit 9900de2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions config/serverless/templates/busola-serverless-extension.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ data:
source: 'spec.source.gitRepository ? "Git Repository" : "Inline Editor"'
- name: header.runtime
source: >-
spec.runtime = 'python312' ? 'Python 3.12' : (spec.runtime = 'nodejs22' ? 'Node.js 22' : (spec.runtime = 'nodejs20' ? 'Node.js 20' : spec.runtime))))
spec.runtime = 'python312' ? 'Python 3.12' : (spec.runtime = 'nodejs22' ? 'Node.js 22' : (spec.runtime = 'nodejs20' ? 'Node.js 20' : spec.runtime))
body:
- widget: Tabs
children:
Expand Down Expand Up @@ -225,7 +225,6 @@ data:
$language = 'Python' ? ['python312'] :
[]
subscribe:
TODO-node
language: |
$language = 'JavaScript' ? ($exists($root.spec.runtime) and $root.spec.runtime != 'python312') ? $root.spec.runtime : 'nodejs20' :
$language = 'Python' ? 'python312' :
Expand Down

0 comments on commit 9900de2

Please sign in to comment.