Skip to content

Commit

Permalink
fix: use ':' instead of '=' for prefix (#2275)
Browse files Browse the repository at this point in the history
* prefix with equal

* revert code

Co-authored-by: Dong Lei <donglei@microsoft.com>
  • Loading branch information
alanlong9278 and boydc2014 committed Mar 17, 2020
1 parent ab052fc commit 7e53610
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 7e53610

Please sign in to comment.