feat(logs): add copy to clipboard button to logs page

includes various other improvements to the logs page
This commit is contained in:
sct
2021-03-19 12:59:23 +00:00
parent 0974a4c971
commit e2b8745fdc
5 changed files with 190 additions and 6 deletions

View File

@@ -5,6 +5,7 @@ export type LogMessage = {
level: string;
label: string;
message: string;
data?: Record<string, unknown>;
};
export interface LogsResultsResponse extends PaginatedResponse {