mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-21 13:23:07 +01:00
feat!: moves search to backend for better experience. It does remove show search results in context. (#3245)
This commit is contained in:
@@ -58,7 +58,7 @@ export class SimpleLogEntry extends LogEntry<string> {
|
||||
}
|
||||
|
||||
export class ComplexLogEntry extends LogEntry<JSONObject> {
|
||||
private readonly filteredMessage: ComputedRef<JSONObject>;
|
||||
private readonly filteredMessage: ComputedRef<Record<string, any>>;
|
||||
|
||||
constructor(
|
||||
message: JSONObject,
|
||||
@@ -89,7 +89,7 @@ export class ComplexLogEntry extends LogEntry<JSONObject> {
|
||||
return ComplexLogItem;
|
||||
}
|
||||
|
||||
public get message(): JSONObject {
|
||||
public get message(): Record<string, any> {
|
||||
return unref(this.filteredMessage);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user