diff --git a/modules/cms-kit/src/Volo.CmsKit.Admin.Web/Pages/CmsKit/Comments/Approve/index.js b/modules/cms-kit/src/Volo.CmsKit.Admin.Web/Pages/CmsKit/Comments/Approve/index.js
index 23a84dee34..f8aa2ba80d 100644
--- a/modules/cms-kit/src/Volo.CmsKit.Admin.Web/Pages/CmsKit/Comments/Approve/index.js
+++ b/modules/cms-kit/src/Volo.CmsKit.Admin.Web/Pages/CmsKit/Comments/Approve/index.js
@@ -57,8 +57,8 @@
orderable: false,
visible: abp.auth.isGranted('CmsKit.Comments.Update'),
render: function (data, type, row) {
- let approveButton = $(``);
- let rejectButton = $(``);
+ let approveButton = $(``);
+ let rejectButton = $(``);
let buttons = [];
buttons.push(approveButton);
buttons.push(rejectButton);
@@ -99,6 +99,16 @@
return "";
}
},
+ {
+ title: l("URL"),
+ data: "url",
+ render: function (data, type, row) {
+ if (data !== null) {
+ return '';
+ }
+ return "";
+ }
+ },
{
title: l("Text"),
data: "text",