From ec040cc2bb0bd059ad34fb22ac7acaf5d07322e9 Mon Sep 17 00:00:00 2001 From: "G.Ambatte" Date: Thu, 5 Jan 2023 10:04:45 +1300 Subject: [PATCH] Add DisplayNames --- .../notificationLookup/notificationLookup.jsx | 1 + client/admin/notificationUtils/notificationUtils.jsx | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/client/admin/notificationUtils/notificationLookup/notificationLookup.jsx b/client/admin/notificationUtils/notificationLookup/notificationLookup.jsx index 3ed0410ee..317f2679c 100644 --- a/client/admin/notificationUtils/notificationLookup/notificationLookup.jsx +++ b/client/admin/notificationUtils/notificationLookup/notificationLookup.jsx @@ -8,6 +8,7 @@ const Moment = require('moment'); const NotificationLookup = createClass({ + displayName : 'NotificationLookup', getDefaultProps() { return {}; }, diff --git a/client/admin/notificationUtils/notificationUtils.jsx b/client/admin/notificationUtils/notificationUtils.jsx index f68462377..3e595265b 100644 --- a/client/admin/notificationUtils/notificationUtils.jsx +++ b/client/admin/notificationUtils/notificationUtils.jsx @@ -2,10 +2,15 @@ const React = require('react'); const createClass = require('create-react-class'); const NotificationLookup = require('./notificationLookup/notificationLookup.jsx'); +const NotificationAdd = require('./notificationAdd/notificationAdd.jsx'); const NotificationUtils = createClass({ + displayName : 'NotificationUtils', + render : function(){ return <> + +
; }