Fix social link save (#10655)

Signed-off-by: Artem Savchenko <armisav@gmail.com>
This commit is contained in:
Artyom Savchenko
2026-03-20 17:18:32 +07:00
committed by GitHub
parent fa03d2b616
commit 9bbbc609fc
@@ -259,7 +259,8 @@
if (result.trim() === '') {
remove(n)
} else if (item.value.trim() !== result.trim()) {
item.value = result
item.value = result.trim()
item.channel.value = item.value
saveItems()
dispatch('save', item.channel)
}