mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 11:41:08 +01:00
Fixed so Weapon/Armor features are added again
This commit is contained in:
parent
300719c116
commit
5891908493
1 changed files with 7 additions and 1 deletions
|
|
@ -85,7 +85,13 @@ export const chunkify = (array, chunkSize, mappingFunc) => {
|
||||||
|
|
||||||
export const tagifyElement = (element, baseOptions, onChange, tagifyOptions = {}) => {
|
export const tagifyElement = (element, baseOptions, onChange, tagifyOptions = {}) => {
|
||||||
const { maxTags } = tagifyOptions;
|
const { maxTags } = tagifyOptions;
|
||||||
const options = typeof baseOptions === 'object' ? Object.values(baseOptions) : baseOptions;
|
const options =
|
||||||
|
typeof baseOptions === 'object'
|
||||||
|
? Object.keys(baseOptions).map(optionKey => ({
|
||||||
|
...baseOptions[optionKey],
|
||||||
|
id: optionKey
|
||||||
|
}))
|
||||||
|
: baseOptions;
|
||||||
|
|
||||||
const tagifyElement = new Tagify(element, {
|
const tagifyElement = new Tagify(element, {
|
||||||
tagTextProp: 'name',
|
tagTextProp: 'name',
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue