Skip to content

Commit

Permalink
Fix title bug: only first word saving
Browse files Browse the repository at this point in the history
  • Loading branch information
Annabelle Thomas Taylor committed Jun 8, 2020
1 parent 5141e77 commit 18f91c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion map.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ map.on('load', () => {
<option value="3" ${questionThree}>3. What active transportation routes are needed?</option>
<option value="4" ${questionFour}>4. What additional land development scenarios, zoning, parking, or other policies should we model and evaluate?</option>
</select>
<input type="text" id="title" placeholder="Title" class="popup__title" value=${currentTitle}>
<input type="text" id="title" placeholder="Title" class="popup__title" value="${currentTitle}">
<textarea id="notes" rows="5" placeholder="Notes" class="popup__notes">${currentNotes}</textarea>
<button id="submit">Save</button>`
)
Expand Down

0 comments on commit 18f91c6

Please sign in to comment.