mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
merge conflicts (#30376)
This commit is contained in:
parent
c139d4ecab
commit
a2576c1598
5 changed files with 12 additions and 5 deletions
|
@ -51,7 +51,7 @@ export class AbstractLayer {
|
|||
}
|
||||
|
||||
isJoinable() {
|
||||
return false;
|
||||
return this._source.isJoinable();
|
||||
}
|
||||
|
||||
async getDisplayName() {
|
||||
|
|
|
@ -114,6 +114,10 @@ export class ESGeoGridSource extends AbstractESSource {
|
|||
return true;
|
||||
}
|
||||
|
||||
isJoinable() {
|
||||
return false;
|
||||
}
|
||||
|
||||
getGridResolution() {
|
||||
return this._descriptor.resolution;
|
||||
}
|
||||
|
|
|
@ -89,6 +89,10 @@ export class AbstractSource {
|
|||
getGeoGridPrecision() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
isJoinable() {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -102,4 +102,7 @@ export class AbstractVectorSource extends AbstractSource {
|
|||
return false;
|
||||
}
|
||||
|
||||
isJoinable() {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -67,10 +67,6 @@ export class VectorLayer extends AbstractLayer {
|
|||
});
|
||||
}
|
||||
|
||||
isJoinable() {
|
||||
return !this._source.isFilterByMapBounds();
|
||||
}
|
||||
|
||||
getJoins() {
|
||||
return this._joins.slice();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue