mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 12:56:41 +07:00
Fixed tags not having proper dependencies
This commit is contained in:
parent
c989d50277
commit
133c6cd0d9
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ export const Tags: FC<IProps> = ({ tags, is_editable, onTagsChange, ...props })
|
||||||
tag.title.substr(0, 1) === '/' ? [[...obj[0], tag], obj[1]] : [obj[0], [...obj[1], tag]],
|
tag.title.substr(0, 1) === '/' ? [[...obj[0], tag], obj[1]] : [obj[0], [...obj[1], tag]],
|
||||||
[[], []]
|
[[], []]
|
||||||
),
|
),
|
||||||
[]
|
[tags]
|
||||||
);
|
);
|
||||||
|
|
||||||
const onInput = useCallback(
|
const onInput = useCallback(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue