Skip to content

Commit

Permalink
Merge branch 'master' into shuwan/fixLuLSPbugs
Browse files Browse the repository at this point in the history
  • Loading branch information
cosmicshuai committed Mar 17, 2020
2 parents 270192f + 7e53610 commit 19f264a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ export const uiSchema: UISchema = {
},
[SDKTypes.SetProperty]: {
'ui:widget': ActionCard,
content: data => `${data.property || '?'} = ${data.value || '?'}`,
content: data => `${data.property || '?'} : ${data.value || '?'}`,
},
[SDKTypes.SetProperties]: {
'ui:widget': ActionCard,
Expand All @@ -212,7 +212,7 @@ export const uiSchema: UISchema = {
items={data.assignments}
itemPadding={8}
renderItem={item => {
const content = `${item.property} = ${item.value}`;
const content = `${item.property} : ${item.value}`;
return (
<SingleLineDiv height={16} title={content}>
{content}
Expand Down

0 comments on commit 19f264a

Please sign in to comment.