Skip to content

Commit

Permalink
fix: fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
JaeAeich committed Nov 12, 2023
1 parent 087fd72 commit e5d6038
Show file tree
Hide file tree
Showing 4 changed files with 188 additions and 14 deletions.
4 changes: 2 additions & 2 deletions apps/documentation/docs/wes/installation.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Installation
<!-- # Installation
`@elixir-cloud/wes` can be installed using npm as
```bash
npm install @elixir-cloud/lit-wes
```
``` -->
193 changes: 182 additions & 11 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@ export class WESCreateRun extends LitElement {
key: "workflow_attachment",
label: "Workflow Attachment",
type: "file",
fieldOptions: {
multiple: true,
},
},
];

Expand Down
2 changes: 1 addition & 1 deletion packages/ecc-utils-design/src/components/form/form.ts
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ export default class Form extends LitElement {
class="input"
part="input-base input"
type="file"
accept=${field.fieldOptions?.accept}
accept=${field.fieldOptions?.accept || false}
?multiple=${field.fieldOptions?.multiple}
?required=${field.fieldOptions?.required}
@change=${async (e: Event) => {
Expand Down

0 comments on commit e5d6038

Please sign in to comment.