+
From:
diff --git a/src/model/model.ts b/src/model/model.ts
index c4eaf355..89b81485 100644
--- a/src/model/model.ts
+++ b/src/model/model.ts
@@ -1921,7 +1921,7 @@ class HistoryViewModel {
searchRemoteId: OV = mobx.observable.box(null, {
name: "historyview-searchRemoteId",
});
- searchShowMeta: OV = mobx.observable.box(false, {
+ searchShowMeta: OV = mobx.observable.box(true, {
name: "historyview-searchShowMeta",
});
searchFromDate: OV = mobx.observable.box(null, {
@@ -2081,7 +2081,7 @@ class HistoryViewModel {
this.searchSessionId.set(null);
this.searchRemoteId.set(null);
this.searchFromDate.set(null);
- this.searchShowMeta.set(false);
+ this.searchShowMeta.set(true);
this.searchFilterCmds.set(true);
})();
GlobalCommandRunner.historyView(this._getSearchParams(0, 0));