Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
alan-wu committed Jul 11, 2024
2 parents 7a6028d + cf6eb0b commit a169ff3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/components/MapContent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,11 @@ export default {
},
/**
* The option to show connectivity info in sidebar.
* Default is `true`. Set `false` to show as popup on map.
*/
connectivityInfoSidebar: {
type: Boolean,
default: false,
default: true,
},
},
data: function () {
Expand Down
2 changes: 1 addition & 1 deletion src/stores/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const useSettingsStore = defineStore('settings', {
featuredDatasetIdentifiers: [],
helpDelay: 0,
useHelpModeDialog: false,
connectivityInfoSidebar: false,
connectivityInfoSidebar: true,
}
},
getters: {
Expand Down

0 comments on commit a169ff3

Please sign in to comment.