0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-07 22:52:39 +00:00

add key to <p> in notes

This commit is contained in:
Gazook89
2023-05-22 14:19:23 -05:00
parent 96b26d72fd
commit d0346650c4

View File

@@ -140,7 +140,7 @@ const StringArrayEditor = createClass({
</div> </div>
</div> </div>
{this.props.notes ? this.props.notes.map((n)=><p><small>{n}</small></p>) : null} {this.props.notes ? this.props.notes.map((n, index)=><p key={index}><small>{n}</small></p>) : null}
</div> </div>
</div>; </div>;
} }