Skip to content

Commit

Permalink
Fix merge
Browse files Browse the repository at this point in the history
  • Loading branch information
garrettmflynn committed Sep 13, 2023
1 parent 91bf5b1 commit 37e1090
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/renderer/src/stories/JSONSchemaForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -416,11 +416,6 @@ export class JSONSchemaForm extends LitElement {
>
<label class="guided--form-label">${header(name)}</label>
${interactiveInput}
${info.description
? html`<p class="guided--text-input-instructions">
${unsafeHTML(capitalize(info.description))}${info.description.slice(-1)[0] === "." ? "" : "."}
</p>`
: ""}
<div class="errors"></div>
<div class="warnings"></div>
</div>
Expand Down
1 change: 1 addition & 0 deletions src/renderer/src/stories/JSONSchemaForm.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ const defaultSchema = {
test: {
type: "string",
default: true,
description: "This is a test description",
},
warn: {
type: "string",
Expand Down
2 changes: 2 additions & 0 deletions src/renderer/src/stories/JSONSchemaInput.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@ export class JSONSchemaInput extends LitElement {
width: 100%;
padding-top: 4px;
color: dimgray !important;
margin: 0 0 1em;
line-height: 1.4285em;
}
`;
}
Expand Down

0 comments on commit 37e1090

Please sign in to comment.