mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-07-12 20:25:24 +00:00
browser logs
This commit is contained in:
parent
3882cc2d0c
commit
29938d9cf7
@ -176,7 +176,15 @@ limitations under the License. -->
|
|||||||
category: { value: "ALL", label: "All" },
|
category: { value: "ALL", label: "All" },
|
||||||
});
|
});
|
||||||
const maxRange = computed(() =>
|
const maxRange = computed(() =>
|
||||||
getMaxRange(appStore.coldStageMode ? appStore.recordsTTL.coldLog : appStore.recordsTTL.log),
|
getMaxRange(
|
||||||
|
appStore.coldStageMode
|
||||||
|
? isBrowser.value
|
||||||
|
? appStore.recordsTTL.coldBrowserErrorLog
|
||||||
|
: appStore.recordsTTL.coldLog
|
||||||
|
: isBrowser.value
|
||||||
|
? appStore.recordsTTL.browserErrorLog
|
||||||
|
: appStore.recordsTTL.log,
|
||||||
|
),
|
||||||
);
|
);
|
||||||
if (props.needQuery) {
|
if (props.needQuery) {
|
||||||
init();
|
init();
|
||||||
|
Loading…
Reference in New Issue
Block a user