Skip to content

Commit

Permalink
feat: add 1 decimal place to percent chart axis labels
Browse files Browse the repository at this point in the history
* fix: filter tags for both regular and infinite scroll
* fix: infinite scroll loading indicator shrinking table temporarily
* fix: charts not resizing after switching DM tabs
* fix: filter menu option disappears after filtering down to one row
* fix: table not fetching more data when scrolling to bottom
* fix: viz toolbar not updating in dashboard split view
* fix: viz toolbar and options toolbar in chatMessage not updating after navigating away
  • Loading branch information
NikkiMeganMoore authored Oct 6, 2022
1 parent 2a258b1 commit 183dbe2
Show file tree
Hide file tree
Showing 18 changed files with 3,002 additions and 1,585 deletions.
Binary file modified example/package/react-autoql-0.0.0-semantically-released.tgz
Binary file not shown.
13 changes: 0 additions & 13 deletions example/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,6 @@ export default class App extends Component {
accentTextColor: '#ffffff',
lightAccentColor: '#26a7df',
darkAccentColor: '#26a7df',
dashboardBackground: '#fafafa',
maxMessages: 20,
isEditing: false,
debug: true,
Expand Down Expand Up @@ -188,7 +187,6 @@ export default class App extends Component {
prevState.lightAccentColor !== this.state.lightAccentColor ||
prevState.darkAccentColor !== this.state.darkAccentColor ||
prevState.accentTextColor !== this.state.accentTextColor ||
prevState.dashboardBackground !== this.state.dashboardBackground ||
prevState.dashboardTitleColor !== this.state.dashboardTitleColor
) {
this.setTheme()
Expand Down Expand Up @@ -246,7 +244,6 @@ export default class App extends Component {
let accentTextColor = this.state.accentTextColor
let chartColors = [...this.state.chartColors]
let dashboardTitleColor = this.state.dashboardTitleColor
let dashboardBackground = this.state.dashboardBackground

const theme = {
theme: this.state.theme,
Expand All @@ -256,7 +253,6 @@ export default class App extends Component {
fontFamily: this.state.fontFamily,
chartColors: chartColors,
dashboardTitleColor,
dashboardBackground,
}

configureTheme(theme)
Expand Down Expand Up @@ -1214,14 +1210,6 @@ export default class App extends Component {
}}
value={this.state.dashboardTitleColor}
/>
<h4>Dashboard Background Color</h4>
<Input
type="text"
onChange={(e) => {
this.setState({ dashboardBackground: e.target.value })
}}
value={this.state.dashboardBackground}
/>
<h4>Text/Icon Color</h4>
<Input
type="color"
Expand Down Expand Up @@ -1436,7 +1424,6 @@ export default class App extends Component {
className="dashboard-toolbar-container"
style={{
textAlign: 'center',
background: this.state.dashboardBackground,
padding: '10px',
}}
>
Expand Down
Loading

0 comments on commit 183dbe2

Please sign in to comment.