Skip to content
代码片段 群组 项目
提交 770460b1 编辑于 作者: Timotej Ecimovic's avatar Timotej Ecimovic
浏览文件

Fix a weird Vue issue with non-primitive keys.

上级 a221a062
No related branches found
No related tags found
无相关合并请求
......@@ -50,7 +50,10 @@ limitations under the License.
/>
</div>
&nbsp;
<div v-for="actionOption in actionOptions" :key="actionOption">
<div
v-for="actionOption in actionOptions"
:key="actionOption.label"
>
<q-btn
outline
@click="doActionFilter(actionOption)"
......@@ -75,7 +78,7 @@ limitations under the License.
</q-input>
</div>
<q-list>
<div v-for="domainName in domainNames" :key="domainName">
<div v-for="domainName in domainNames" :key="domainName.id">
<div v-show="clusterDomains(domainName).length > 0">
<q-expansion-item
:id="domainName"
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册