diff --git a/apps/documenteditor/main/app/view/TableSettings.js b/apps/documenteditor/main/app/view/TableSettings.js index 648afe5d0..a728cfc1d 100644 --- a/apps/documenteditor/main/app/view/TableSettings.js +++ b/apps/documenteditor/main/app/view/TableSettings.js @@ -721,7 +721,8 @@ define([ arr.push({ imageUrl: template.asc_getImage(), id : Common.UI.getId(), - templateId: template.asc_getId() + templateId: template.asc_getId(), + tip : template.asc_getDisplayName() }); }); self.cmbTableTemplate.menuPicker.store.add(arr); diff --git a/apps/presentationeditor/main/app/view/TableSettings.js b/apps/presentationeditor/main/app/view/TableSettings.js index dce548f59..aa3ba303b 100644 --- a/apps/presentationeditor/main/app/view/TableSettings.js +++ b/apps/presentationeditor/main/app/view/TableSettings.js @@ -690,7 +690,8 @@ define([ arr.push({ imageUrl: template.asc_getImage(), id : Common.UI.getId(), - templateId: template.asc_getId() + templateId: template.asc_getId(), + tip : template.asc_getDisplayName() }); }); self.cmbTableTemplate.menuPicker.store.add(arr);