diff --git a/app_product_brand/models/product_brand.py b/app_product_brand/models/product_brand.py
index de1ae1d5..afcbd6ba 100644
--- a/app_product_brand/models/product_brand.py
+++ b/app_product_brand/models/product_brand.py
@@ -11,6 +11,8 @@ from odoo import api, fields, models, _
class ProductBrand(models.Model):
_name = 'product.brand'
+
+ _inherit = ['mail.thread', 'mail.activity.mixin']
_description = "Product Brand"
_order = 'sequence, name'
diff --git a/app_product_brand/views/product_brand_views.xml b/app_product_brand/views/product_brand_views.xml
index 6cf737e0..e3cf19b7 100644
--- a/app_product_brand/views/product_brand_views.xml
+++ b/app_product_brand/views/product_brand_views.xml
@@ -54,6 +54,11 @@