fix redirection issue from entity details page to profiler page (#9494)

This commit is contained in:
Shailesh Parmar 2022-12-22 21:10:11 +05:30 committed by GitHub
parent 6030f4da79
commit e0e37b5afc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -136,8 +136,9 @@ const ProfilerDashboardPage = () => {
const fetchTableEntity = async () => {
try {
const fqn = isColumnView
? getTableFQNFromColumnFQN(decodedEntityFQN)
: decodedEntityFQN;
? getTableFQNFromColumnFQN(entityTypeFQN)
: entityTypeFQN;
const field = `tags, usageSummary, owner, followers${
isColumnView ? ', profile' : ''
}`;