Skip to content

Commit 6ba829e

Browse files
authored
hdi: use db_tenant_id from instance, so we see it without binding (#159)
1 parent 6226621 commit 6ba829e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/submodules/hanaManagement.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ const _hdiListServiceManager = async (context, { filterTenantId, doTimestamps, d
262262
binding ? binding.credentials?.schema : "",
263263
binding ? instance.ready && binding.ready : "",
264264
];
265-
doShowDbTenantColumn && row.splice(1, 0, binding ? (binding.credentials?.tenantId ?? "") : "missing binding");
265+
doShowDbTenantColumn && row.splice(1, 0, instance.id);
266266
doTimestamps && row.push(...formatTimestampsWithRelativeDays([instance.created_at, instance.updated_at], nowDate));
267267
return row;
268268
};

0 commit comments

Comments
 (0)