Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisj committed Jul 3, 2024
1 parent 86577fc commit c476a44
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions src/data_panel_layout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -793,7 +793,6 @@ export class DataPanelLayoutContainer extends RefCounted {
return this.specification.type.value;
}
set name(value: string) {
console.log("set name", value);
this.specification.type.value = value;
}

Expand Down Expand Up @@ -845,7 +844,6 @@ export class DataPanelLayoutContainer extends RefCounted {
}
private updateLayout() {
this.disposeLayout();
console.log("updateLayout", this.name);
this.layout = getLayoutByName(this.name).factory(
this,
this.element,
Expand Down
1 change: 0 additions & 1 deletion src/ui/layer_data_sources_tab.ts
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,6 @@ export class LayerDataSourcesTab extends Tab {
const view = this.sourceViews.get(layerDataSource);
if (view === undefined) return;
view.urlInput.inputElement.focus();
console.log("hi");
});
element.appendChild(this.dataSourcesContainer);
if (layer instanceof NewUserLayer) {
Expand Down

0 comments on commit c476a44

Please sign in to comment.