0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-31 19:32:47 +00:00

rename tag container class to unify with fields

This commit is contained in:
Gazook89
2024-09-19 15:57:40 -05:00
parent 10a9bc2906
commit 433f016c25

View File

@@ -84,7 +84,7 @@ const TagInput = ({ unique = true, values = [], ...props }) => {
return ( return (
<div className='field'> <div className='field'>
<label>{props.label}</label> <label>{props.label}</label>
<div className='tag-input'> <div className='value'>
<ul className='list'> <ul className='list'>
{valueContext.map((context, index) => { return context.editing ? renderWriteTag(context, index) : renderReadTag(context, index); })} {valueContext.map((context, index) => { return context.editing ? renderWriteTag(context, index) : renderReadTag(context, index); })}
</ul> </ul>