[bugfix] remove spaces from inventory note

This commit is contained in:
Thad Miller
2026-07-16 20:14:56 -04:00
parent 4992890503
commit 3957a86f9c

View File

@@ -197,9 +197,7 @@ const altSearchUrl = (card: any) => {
</datalist> </datalist>
<label for="note" class="form-label mt-2">Note</label> <label for="note" class="form-label mt-2">Note</label>
<textarea class="form-control" id="note" name="note" rows="5" maxlength="255" placeholder="e.g. bought at local shop, gift, graded copy…"> <textarea class="form-control" id="note" name="note" rows="5" maxlength="255" placeholder="e.g. bought at local shop, gift, graded copy…">{inv?.note ?? ''}</textarea>
{inv?.note ?? ''}
</textarea>
</form> </form>
</div> </div>