Skip to content

Commit

Permalink
seed-editor uses .row styles for each object.
Browse files Browse the repository at this point in the history
Part of #6.
  • Loading branch information
jkomoros committed Aug 12, 2023
1 parent 512c55e commit 0876c74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/seed-editor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export class SeedEditor extends LitElement {
//TODO: render choices for `t`.
//TODO: if the sub-data is a seed, render a seed-editor.
//TODO: if the sub-data is a reference, render a reference.
return html`<label>${prop}</label><value-editor .path=${subPath} .data=${subData}></value-editor>`;
return html`<div class='row'><label>${prop}</label><value-editor .path=${subPath} .data=${subData}></value-editor></div>`;
}


Expand Down

0 comments on commit 0876c74

Please sign in to comment.