Skip to content

Commit

Permalink
Merge pull request #5292 from Sage-Bionetworks/release-488
Browse files Browse the repository at this point in the history
  • Loading branch information
nickgros authored Feb 12, 2024
2 parents 3a6dd86 + ef55fe6 commit a868e36
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ extras/
/.sass-cache/
.idea/*

src/main/main.iml
src/test/test.iml

# We use a maven plugin to download node and required modules.
# Since these are retrieved at build-time, no need to commit.
node/*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public interface OnViewSharingSettingsHandler {
SynapseTableProps tableConfiguration;

@JsNullable
boolean defaultShowFacetVisualization;
boolean defaultShowPlots;

boolean showLastUpdatedOn;

Expand All @@ -79,7 +79,7 @@ public static QueryWrapperPlotNavProps create(
props.downloadCartPageUrl = "#!DownloadCart:0";
props.showLastUpdatedOn = false;
// SWC-6138 - hide charts by default
props.defaultShowFacetVisualization = false;
props.defaultShowPlots = false;
return props;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@
xmlns:t="urn:import:org.sagebionetworks.web.client.view.bootstrap.table"
>
<g:HTMLPanel>
<t:Table ui:field="table" styleName="table table-striped table-condensed">
<t:Table
ui:field="table"
styleName="table table-striped table-condensed whiteBackground"
>
<!-- <t:THead> <t:TableRow> <t:TableHeader> <b.html:Text>Key</b.html:Text>
</t:TableHeader> <t:TableHeader> <b.html:Text>Value</b.html:Text> </t:TableHeader>
</t:TableRow> </t:THead> -->
Expand Down

0 comments on commit a868e36

Please sign in to comment.