This is an automated email from the ASF dual-hosted git repository.

guanmingchiu pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 6206ea1b178 Display User ID of the current user to use in HITL 
assigned_users. (#62322)
6206ea1b178 is described below

commit 6206ea1b178c81e5a989f4083743673db00dd101
Author: Karthikeyan Singaravelan <[email protected]>
AuthorDate: Sun Feb 22 20:10:28 2026 +0530

    Display User ID of the current user to use in HITL assigned_users. (#62322)
---
 airflow-core/src/airflow/ui/src/layouts/Nav/UserSettingsButton.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/airflow-core/src/airflow/ui/src/layouts/Nav/UserSettingsButton.tsx 
b/airflow-core/src/airflow/ui/src/layouts/Nav/UserSettingsButton.tsx
index 305f49aa01d..02bf017f6eb 100644
--- a/airflow-core/src/airflow/ui/src/layouts/Nav/UserSettingsButton.tsx
+++ b/airflow-core/src/airflow/ui/src/layouts/Nav/UserSettingsButton.tsx
@@ -97,7 +97,7 @@ export const UserSettingsButton = ({ externalViews }: { 
readonly externalViews:
                   {translate("signedInAs")}
                 </Box>
                 <Box fontSize="md" fontWeight="semibold">
-                  {currentUser.username}
+                  {`${currentUser.username} (id: ${currentUser.id})`}
                 </Box>
               </Box>
               <Menu.Separator />

Reply via email to