Skip to content

Commit

Permalink
fix: desc should be displayed as-is in intersection
Browse files Browse the repository at this point in the history
  • Loading branch information
shigma committed Jan 11, 2023
1 parent ccdca62 commit f7c0e05
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"yakumo": "^0.3.7",
"yakumo-esbuild": "^0.3.19",
"yakumo-mocha": "^0.3.1",
"yakumo-publish": "^0.3.1",
"yakumo-publish": "^0.3.2",
"yakumo-tsc": "^0.3.7",
"yakumo-upgrade": "^0.3.2",
"yakumo-version": "^0.3.2"
Expand Down
2 changes: 1 addition & 1 deletion packages/form/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "schemastery-vue",
"description": "Type driven schema validator",
"version": "1.4.5",
"version": "1.4.7",
"main": "src/index.ts",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/form/src/schema.vue
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
<k-schema
v-model="config"
:initial="initial"
:schema="{ ...active, meta: { ...active.meta, description: '' } }"
:schema="branch ? active : { ...active, meta: { ...active.meta, description: '' } }"
:instant="instant"
:disabled="disabled"
:prefix="prefix"
Expand Down

0 comments on commit f7c0e05

Please sign in to comment.