Skip to content

Commit

Permalink
Fixed DataTable and generated assets
Browse files Browse the repository at this point in the history
  • Loading branch information
rabenhorst committed Jan 25, 2023
1 parent 4b19caf commit 0966b85
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 15 deletions.
24 changes: 12 additions & 12 deletions pkg/ui/bindata.go

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion pkg/ui/react-app/src/pages/graph/DataTable.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,6 @@ describe('DataTable', () => {
},
],
},
useLocalTime: false,
};
const dataTable = shallow(<DataTable {...dataTableProps} />);

Expand Down
4 changes: 2 additions & 2 deletions pkg/ui/react-app/src/pages/graph/DataTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ export interface QueryResult {

interface InstantSample {
metric: Metric;
value: SampleValue;
value?: SampleValue;
histogram?: SampleHistogram;
}

interface RangeSamples {
metric: Metric;
values: SampleValue[];
values?: SampleValue[];
histograms?: SampleHistogram[];
}

Expand Down

0 comments on commit 0966b85

Please sign in to comment.