Skip to content

Commit a1d8117

Browse files
committed
fix: update top questions statistics terminology from "top10" to "top"
1 parent 0555632 commit a1d8117

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

apps/application/views/application_stats.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,12 @@ def get(self, request: Request, workspace_id: str, application_id: str):
7777

7878
class TopQuestionsStatistics(APIView):
7979
authentication_classes = [TokenAuth]
80-
# 应用的top10问题统计
80+
# 应用的top问题统计
8181
@extend_schema(
8282
methods=['GET'],
83-
description=_('Application top10 question statistics'),
84-
summary=_('Application top10 question statistics'),
85-
operation_id=_('Application top10 question statistics'), # type: ignore
83+
description=_('Application top question statistics'),
84+
summary=_('Application top question statistics'),
85+
operation_id=_('Application top question statistics'), # type: ignore
8686
parameters=ApplicationStatsAPI.get_parameters(),
8787
responses=ApplicationStatsAPI.get_response(),
8888
tags=[_('Application')] # type: ignore

0 commit comments

Comments
 (0)