Skip to content

Commit

Permalink
fix(entities-plugins): config section display in plugin forms (#1482)
Browse files Browse the repository at this point in the history
  • Loading branch information
Leopoldthecoder authored Jul 9, 2024
1 parent b478d0d commit e8f730c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,12 +114,12 @@
<JsonCodeBlock
:config="config"
:fetcher-url="submitUrl"
:json-record="form.fields"
:json-record="getRequestBody"
:request-method="props.pluginId ? 'put' : 'post'"
/>
</template>
<template #yaml>
<YamlCodeBlock :yaml-record="form.fields" />
<YamlCodeBlock :yaml-record="getRequestBody" />
</template>
</KTabs>
</KSlideout>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,17 +88,17 @@ const displayedCharLength = computed((): number => {
display: flex;
padding: $kui-space-40 $kui-space-0 $kui-space-30 $kui-space-50;
.k-badge {
height: 24px;
}
.k-code-block {
flex: auto;
z-index: 2;
.code-block-content {
padding-bottom: $kui-space-0;
}
.code-block-secondary-actions {
margin-top: 0 !important;
}
}
code {
Expand Down

0 comments on commit e8f730c

Please sign in to comment.