refactor(app): changed condition for aliases input

This commit is contained in:
bjst0ne
2026-02-28 22:38:54 +03:00
parent ae81c216b0
commit 04e1c2f542

View File

@@ -385,7 +385,7 @@ const DetailsPanel = memo(() => {
</a>
) : value && value.constructor === Object ? (
<PopoverProperty label={key} property={value} />
) : key === 'aliases' ? (
) : Array.isArray(value) ? (
<TagsInput
value={value || []}
onChange={(tags) => handlePropertyChange(key, tags)}