|
@@ -6,7 +6,7 @@ import loggerFactory from '~/utils/logger';
|
|
|
|
|
|
|
|
import AppContainer from '../../client/services/AppContainer';
|
|
import AppContainer from '../../client/services/AppContainer';
|
|
|
import { withUnstatedContainers } from '../UnstatedUtils';
|
|
import { withUnstatedContainers } from '../UnstatedUtils';
|
|
|
-import InAppNotificationContents from './InAppNotificationContents';
|
|
|
|
|
|
|
+import InAppNotificationList from './InAppNotificationList';
|
|
|
import SocketIoContainer from '../../client/services/SocketIoContainer';
|
|
import SocketIoContainer from '../../client/services/SocketIoContainer';
|
|
|
|
|
|
|
|
const logger = loggerFactory('growi:InAppNotificationDropdown');
|
|
const logger = loggerFactory('growi:InAppNotificationDropdown');
|
|
@@ -103,7 +103,7 @@ const InAppNotificationDropdown: FC<Props> = (props: Props) => {
|
|
|
</button>
|
|
</button>
|
|
|
</DropdownToggle>
|
|
</DropdownToggle>
|
|
|
<DropdownMenu className="px-2" right>
|
|
<DropdownMenu className="px-2" right>
|
|
|
- <InAppNotificationContents notifications={notifications} isLoaded={isLoaded} />
|
|
|
|
|
|
|
+ <InAppNotificationList notifications={notifications} isLoaded={isLoaded} />
|
|
|
<DropdownItem divider />
|
|
<DropdownItem divider />
|
|
|
{/* TODO: Able to show all notifications by #79317 */}
|
|
{/* TODO: Able to show all notifications by #79317 */}
|
|
|
<a className="dropdown-item d-flex justify-content-center" href="/me/all-in-app-notifications">See All</a>
|
|
<a className="dropdown-item d-flex justify-content-center" href="/me/all-in-app-notifications">See All</a>
|