mirror of https://github.com/openspug/spug
F 修复常规发布Tag过滤异常的问题 #137
parent
a17c46ea6b
commit
de1d987014
|
@ -157,7 +157,7 @@ class Ext1Form extends React.Component {
|
||||||
Object.keys(branches || {}).map(b => <Select.Option key={b} value={b}>{b}</Select.Option>)
|
Object.keys(branches || {}).map(b => <Select.Option key={b} value={b}>{b}</Select.Option>)
|
||||||
) : (
|
) : (
|
||||||
Object.entries(tags || {}).map(([tag, info]) => (
|
Object.entries(tags || {}).map(([tag, info]) => (
|
||||||
<Select.Option key={tag} value={tag}>{tag} {info.author} {info.message}</Select.Option>
|
<Select.Option key={tag} value={tag}>{`${tag} ${info.author} ${info.message}`}</Select.Option>
|
||||||
))
|
))
|
||||||
)}
|
)}
|
||||||
</Select>
|
</Select>
|
||||||
|
|
Loading…
Reference in New Issue