1
0
Fork 0
mirror of synced 2024-07-09 00:06:05 +12:00

Fix keying in component design properties

This commit is contained in:
Andrew Kingston 2021-02-09 13:31:20 +00:00
parent febc2ceda0
commit 9054e764e0

View file

@ -25,7 +25,7 @@
<DetailSummary name={`${name}${changed ? ' *' : ''}`} on:open show={open} thin> <DetailSummary name={`${name}${changed ? ' *' : ''}`} on:open show={open} thin>
{#if open} {#if open}
<div> <div>
{#each properties as prop (`${componentInstance._id}-${prop.key}`)} {#each properties as prop (`${componentInstance._id}-${prop.key}-${prop.label}`)}
<PropertyControl <PropertyControl
bindable={false} bindable={false}
label={`${prop.label}${hasPropChanged(style, prop) ? ' *' : ''}`} label={`${prop.label}${hasPropChanged(style, prop) ? ' *' : ''}`}