diff --git a/awx/ui/client/src/activity-stream/factories/show-detail.factory.js b/awx/ui/client/src/activity-stream/factories/show-detail.factory.js index e275013acc..b2d328aa79 100644 --- a/awx/ui/client/src/activity-stream/factories/show-detail.factory.js +++ b/awx/ui/client/src/activity-stream/factories/show-detail.factory.js @@ -18,6 +18,8 @@ export default scope.user = ((activity.summary_fields.actor) ? activity.summary_fields.actor.username : 'system') + ' on ' + $filter('longDate')(activity.timestamp); scope.operation = activity.description; + scope.settingCategory = _.get(activity, 'summary_fields.setting[0].category'); + scope.settingName = _.get(activity, 'summary_fields.setting[0].name'); scope.header = "Event " + activity.id; scope.variables = ParseVariableString(scope.changes); diff --git a/awx/ui/client/src/activity-stream/streamDetailModal/streamDetailModal.block.less b/awx/ui/client/src/activity-stream/streamDetailModal/streamDetailModal.block.less index de9445942f..3cd0ae8e18 100644 --- a/awx/ui/client/src/activity-stream/streamDetailModal/streamDetailModal.block.less +++ b/awx/ui/client/src/activity-stream/streamDetailModal/streamDetailModal.block.less @@ -13,7 +13,7 @@ } .StreamDetail-inlineRowTitle { - flex: 0 0 110px; + flex: 0 0 125px; } .StreamDetail-inlineRowData { diff --git a/awx/ui/client/src/activity-stream/streamDetailModal/streamDetailModal.partial.html b/awx/ui/client/src/activity-stream/streamDetailModal/streamDetailModal.partial.html index fb08ec98de..e3f83507f4 100644 --- a/awx/ui/client/src/activity-stream/streamDetailModal/streamDetailModal.partial.html +++ b/awx/ui/client/src/activity-stream/streamDetailModal/streamDetailModal.partial.html @@ -16,6 +16,14 @@
ACTION
+
+
SETTING CATEGORY
+
+
+
+
SETTING NAME
+
+
CHANGES