-
Notifications
You must be signed in to change notification settings - Fork 246
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
develop to master #1794
develop to master #1794
Conversation
sumitbhanushali
commented
May 21, 2024
- canned response redesign
redesign: canned response
'label': 'Title', | ||
'type': 'Data', | ||
'key': 'title', | ||
'width': '5rem', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[black-format] reported by reviewdog 🐶
'label': 'Title', | |
'type': 'Data', | |
'key': 'title', | |
'width': '5rem', | |
"label": "Title", | |
"type": "Data", | |
"key": "title", | |
"width": "5rem", |
'label': 'Message', | ||
'type': 'Text Editor', | ||
'key': 'message', | ||
'width': '25rem', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[black-format] reported by reviewdog 🐶
'label': 'Message', | |
'type': 'Text Editor', | |
'key': 'message', | |
'width': '25rem', | |
"label": "Message", | |
"type": "Text Editor", | |
"key": "message", | |
"width": "25rem", |
'label': 'Owner', | ||
'type': 'Link', | ||
'key': 'owner', | ||
'width': '5rem', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[black-format] reported by reviewdog 🐶
'label': 'Owner', | |
'type': 'Link', | |
'key': 'owner', | |
'width': '5rem', | |
"label": "Owner", | |
"type": "Link", | |
"key": "owner", | |
"width": "5rem", |
'label': 'Modified On', | ||
'type': 'Datetime', | ||
'key': 'modified', | ||
'width': '5rem', | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[black-format] reported by reviewdog 🐶
'label': 'Modified On', | |
'type': 'Datetime', | |
'key': 'modified', | |
'width': '5rem', | |
} | |
"label": "Modified On", | |
"type": "Datetime", | |
"key": "modified", | |
"width": "5rem", | |
}, |
rows = [ | ||
"title", | ||
"message", | ||
"owner", | ||
"modified" | ||
] | ||
return {'columns': columns, 'rows': rows} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[black-format] reported by reviewdog 🐶
rows = [ | |
"title", | |
"message", | |
"owner", | |
"modified" | |
] | |
return {'columns': columns, 'rows': rows} | |
rows = ["title", "message", "owner", "modified"] | |
return {"columns": columns, "rows": rows} |