Skip to content
Snippets Groups Projects
Commit 54d6c5af authored by Allen Gilliland's avatar Allen Gilliland
Browse files

Merge pull request #1427 from metabase/unlinkify_aggregation_cells

Don't show links in table cells for aggregations
parents 7066a453 b5914161
No related branches found
No related tags found
No related merge requests found
......@@ -254,7 +254,7 @@ CardControllers.controller('CardDetail', [
if (!coldef || !coldef.special_type) return false;
if (coldef.special_type === 'id' || (coldef.special_type === 'fk' && coldef.target)) {
if (coldef.table_id != null && coldef.special_type === 'id' || (coldef.special_type === 'fk' && coldef.target)) {
return true;
} else {
return false;
......
......@@ -46,7 +46,8 @@ const TYPES = {
},
[SUMMABLE]: {
include: [NUMBER]
include: [NUMBER],
exclude: [ENTITY, LOCATION, DATE_TIME]
},
[CATEGORY]: {
base: ["BooleanField"],
......@@ -67,7 +68,15 @@ export function isFieldType(type, field) {
return true;
}
}
// recursively check to see if it's another field th:
// recursively check to see if it's NOT another field type:
if (def.exclude) {
for (let excludeType of def.exclude) {
if (isFieldType(excludeType, field)) {
return false;
}
}
}
// recursively check to see if it's another field type:
if (def.include) {
for (let includeType of def.include) {
if (isFieldType(includeType, field)) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment