Skip to content

Commit

Permalink
Made assets
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastian Rabenhorst <sebastian.rabenhorst@shopify.com>
  • Loading branch information
rabenhorst committed Jan 25, 2023
1 parent 2aec6f6 commit e7b018c
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 43 deletions.
80 changes: 40 additions & 40 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 e7b018c

Please sign in to comment.