Skip to content

Commit

Permalink
Merge pull request #14 from figtive/fix/small-issues
Browse files Browse the repository at this point in the history
Fix small issues
  • Loading branch information
daystram authored Dec 31, 2021
2 parents 7deba18 + 6db5a62 commit e111bd8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
1 change: 1 addition & 0 deletions src/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ export interface ProjectMetadata {
partner: string;
productOwner: string;
scrumMaster: string;
devOps: string;
developmentTeam: string[];
}

Expand Down
17 changes: 11 additions & 6 deletions src/lib/components/forms/ProjectForm.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
partner: '',
productOwner: '',
scrumMaster: '',
devOps: '',
developmentTeam: [''],
};
onMount(() => {
Expand Down Expand Up @@ -129,23 +130,27 @@
<input type="text" class="form-control" id="partner" bind:value={metadataFormData.partner} />
</div>
<div class="mb-3">
<label for="scrumMaster" class="form-label">Scrum Master</label>
<label for="productOwner" class="form-label">Product Owner</label>
<input
type="text"
class="form-control"
id="scrumMaster"
bind:value={metadataFormData.scrumMaster}
id="productOwner"
bind:value={metadataFormData.productOwner}
/>
</div>
<div class="mb-3">
<label for="productOwner" class="form-label">Product Owner</label>
<label for="scrumMaster" class="form-label">Scrum Master</label>
<input
type="text"
class="form-control"
id="productOwner"
bind:value={metadataFormData.productOwner}
id="scrumMaster"
bind:value={metadataFormData.scrumMaster}
/>
</div>
<div class="mb-3">
<label for="devOps" class="form-label">DevOps</label>
<input type="text" class="form-control" id="devOps" bind:value={metadataFormData.devOps} />
</div>
<div class="mb-3">
<label for="developmentTeam" class="form-label">Development Team</label>
<input
Expand Down

0 comments on commit e111bd8

Please sign in to comment.