This is an automated email from the ASF dual-hosted git repository. jinrongtong pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/rocketmq-dashboard.git
The following commit(s) were added to refs/heads/master by this push: new d9fc76d fix:Fixed the issue that normal messages in version v4 are not showed (#222) d9fc76d is described below commit d9fc76d3a31c15d3d92fef563b905b8a72aded5d Author: Akai <91858554+1294566...@users.noreply.github.com> AuthorDate: Wed Jul 24 10:56:47 2024 +0800 fix:Fixed the issue that normal messages in version v4 are not showed (#222) Co-authored-by: yuanziwei <yuanzi...@xiaomi.com> --- src/main/resources/static/src/topic.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/resources/static/src/topic.js b/src/main/resources/static/src/topic.js index a455572..4ef6720 100644 --- a/src/main/resources/static/src/topic.js +++ b/src/main/resources/static/src/topic.js @@ -141,6 +141,9 @@ module.controller('topicController', ['$scope', 'ngDialog', '$http', 'Notificati if (type.includes("NORMAL")) { return true } + if (!localStorage.getItem('isV5') && type.includes("UNSPECIFIED")) { + return true + } } if ($scope.filterDelay) { if (type.includes("DELAY")) {