Skip to content

Commit

Permalink
never hide table for desktop
Browse files Browse the repository at this point in the history
  • Loading branch information
jmhauck committed Jan 12, 2024
1 parent de961e3 commit 768f35c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/crowdsource-manager/crowdsource-manager.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -815,7 +815,7 @@ export class CrowdsourceManager {
panelOpen: boolean,
hideTable: boolean
): VNode {
const tableClass = hideTable ? "visibility-hidden" : "";
const tableClass = hideTable && this._isMobile ? "visibility-hidden" : "";
const tableSizeClass = this._getTableSizeClass(layoutMode, panelOpen)
const icon = this._getDividerIcon(layoutMode, panelOpen);
const tooltip = panelOpen ? this._translations.close : this._translations.open;
Expand Down

0 comments on commit 768f35c

Please sign in to comment.