Skip to content

Commit

Permalink
[IMP] project_issue: change description field type into html
Browse files Browse the repository at this point in the history
Because task has an html file and issue was jealous. And also to have
clickable links.
  • Loading branch information
hsh-odoo authored and tde-banana-odoo committed May 10, 2017
1 parent d797829 commit 29d1086
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/project_issue/models/project_issue.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def _get_default_stage_id(self):
date_deadline = fields.Date(string='Deadline')
partner_id = fields.Many2one('res.partner', string='Contact', index=True)
company_id = fields.Many2one('res.company', string='Company', default=lambda self: self.env.user.company_id)
description = fields.Text('Private Note')
description = fields.Html('Private Note')
kanban_state = fields.Selection([
('normal', 'Grey'),
('blocked', 'Red'),
Expand Down

0 comments on commit 29d1086

Please sign in to comment.