forked from MapComplete/MapComplete
Fix back button behaviour, fix #523
This commit is contained in:
parent
a6abbe45b8
commit
936cf1bf9f
6 changed files with 23 additions and 5 deletions
|
@ -13,7 +13,7 @@ import ExportPDF from "../ExportPDF";
|
|||
export default class AllDownloads extends ScrollableFullScreen {
|
||||
|
||||
constructor(isShown: UIEventSource<boolean>) {
|
||||
super(AllDownloads.GenTitle, AllDownloads.GeneratePanel, isShown);
|
||||
super(AllDownloads.GenTitle, AllDownloads.GeneratePanel, "downloads", isShown);
|
||||
}
|
||||
|
||||
private static GenTitle(): BaseUIElement {
|
||||
|
|
|
@ -30,6 +30,7 @@ export default class FullWelcomePaneWithTabs extends ScrollableFullScreen {
|
|||
super(
|
||||
() => layoutToUse.title.Clone(),
|
||||
() => FullWelcomePaneWithTabs.GenerateContents(state, currentTab, isShown),
|
||||
"welcome",
|
||||
isShown
|
||||
)
|
||||
}
|
||||
|
|
|
@ -41,6 +41,7 @@ export default class LeftControls extends Combine {
|
|||
state.layoutToUse,
|
||||
new ContributorCount(state).Contributors
|
||||
),
|
||||
"copyright",
|
||||
guiState.copyrightViewIsOpened
|
||||
);
|
||||
|
||||
|
@ -74,6 +75,7 @@ export default class LeftControls extends Combine {
|
|||
new FilterView(state.filteredLayers, state.overlayToggles).SetClass(
|
||||
"block p-1"
|
||||
),
|
||||
"filters",
|
||||
guiState.filterViewIsOpened
|
||||
).SetClass("rounded-lg"),
|
||||
new MapControlButton(Svg.filter_svg())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue