Skip to content

Commit

Permalink
fix(ui): show proper code value in blueprint detail editor (#4444)
Browse files Browse the repository at this point in the history
  • Loading branch information
MilosPaunovic authored Jul 26, 2024
1 parent 1425fb8 commit 1ad3bb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/components/flows/blueprints/BlueprintDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<el-col :md="24" :lg="embed ? 24 : 18">
<h4>{{ $t("source") }}</h4>
<el-card>
<editor class="position-relative" :read-only="true" :full-height="false" :minimap="false" :model-value="blueprint.flow" lang="yaml">
<editor class="position-relative" :read-only="true" :input="true" :full-height="false" :minimap="false" :model-value="blueprint.flow" lang="yaml">
<template #nav>
<copy-to-clipboard class="position-absolute" :text="blueprint.flow" />
</template>
Expand Down

0 comments on commit 1ad3bb6

Please sign in to comment.