File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
packages/extension-sdk/src/connect/tile Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -185,7 +185,7 @@ describe('TileSDK', () => {
185185 tileSdk . updateFilters ( filters , true )
186186 expect ( api . send ) . toBeCalledWith ( 'TILE_UPDATE_FILTERS' , {
187187 filters,
188- runDashboard : true ,
188+ run : true ,
189189 } )
190190 } )
191191
Original file line number Diff line number Diff line change @@ -114,11 +114,11 @@ export class TileSDKImpl implements TileSDK {
114114 }
115115 }
116116
117- updateFilters ( filters : Filters , runDashboard = false ) {
117+ updateFilters ( filters : Filters , run = false ) {
118118 if ( this . hostApi . isDashboardMountSupported ) {
119119 this . hostApi . send ( ExtensionRequestType . TILE_UPDATE_FILTERS , {
120120 filters,
121- runDashboard ,
121+ run ,
122122 } )
123123 } else {
124124 throw NOT_DASHBOARD_MOUNT_NOT_SUPPORTED_ERROR
You can’t perform that action at this time.
0 commit comments