diff options
Diffstat (limited to 'ufund-ui/src/app/components')
| -rw-r--r-- | ufund-ui/src/app/components/cupboard/cupboard.component.html | 5 | 
1 files changed, 4 insertions, 1 deletions
diff --git a/ufund-ui/src/app/components/cupboard/cupboard.component.html b/ufund-ui/src/app/components/cupboard/cupboard.component.html index 25b88ba..89d8fbe 100644 --- a/ufund-ui/src/app/components/cupboard/cupboard.component.html +++ b/ufund-ui/src/app/components/cupboard/cupboard.component.html @@ -24,6 +24,8 @@              <label>Physical</label><br>              <input type="checkbox" name="urgent" value="false" ngModel>              <label>Urgent</label><br> +            <label>Description</label> +            <textarea name="description" [(ngModel)]="selectedNeed.description"></textarea><br>              <input type="submit" value="Submit">          </form> @@ -46,7 +48,8 @@              <input type="checkbox" name="urgent" [(ngModel)]="selectedNeed.urgent">              <label>Urgent</label> <br>              <input type="submit" value="Submit"> - +            <label>Description</label> +            <textarea name="description" [(ngModel)]="selectedNeed.description"></textarea><br>          </form>          <span *ngIf="statusText">{{statusText | async}}</span>  | 
