我在formlyConfig中有这个自定义选择,但是一旦选择了除空(空白)之外的任何其他选项,它将从列表中消失。有没有办法编辑这个formlyConfig以允许再次选择空选项而不从列表中消失?
这是配置
table_definition: |
CREATE TABLE blogposts (
domain text,
published_date timeuuid,
url text,
author text,
title text,
body text,
PRIMARY KEY(domain, published_date)
) WITH CLUSTERING ORDER BY (published_date DESC)
AND compaction = { 'class':'LeveledCompactionStrategy' }
AND comment='A table to hold blog posts'