@blueking/monitor-apm-log 2.3.8 → 2.3.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/main.js +6 -0
- package/package.json +1 -1
package/main.js
CHANGED
|
@@ -142285,6 +142285,7 @@ const CommonList = () => null;
|
|
|
142285
142285
|
|
|
142286
142286
|
|
|
142287
142287
|
|
|
142288
|
+
|
|
142288
142289
|
/* harmony default export */ const index_set_choice = ((0,external_vue_.defineComponent)({
|
|
142289
142290
|
props: {
|
|
142290
142291
|
height: {
|
|
@@ -142346,6 +142347,7 @@ const CommonList = () => null;
|
|
|
142346
142347
|
let {
|
|
142347
142348
|
emit
|
|
142348
142349
|
} = _ref;
|
|
142350
|
+
const store = use_store();
|
|
142349
142351
|
const isOpened = (0,external_vue_.ref)(false);
|
|
142350
142352
|
const refRootElement = (0,external_vue_.ref)(null);
|
|
142351
142353
|
const shortcutKey = `${getOsCommandLabel()}+O`;
|
|
@@ -142398,6 +142400,9 @@ const CommonList = () => null;
|
|
|
142398
142400
|
};
|
|
142399
142401
|
(0,external_vue_.watch)(() => props.indexSetValue, () => {
|
|
142400
142402
|
selectedValues.value = getSelectedValues();
|
|
142403
|
+
if (selectedValues.value.length === 1 && window.__IS_MONITOR_APM__) {
|
|
142404
|
+
store.commit('updateSpace', selectedValues.value[0]);
|
|
142405
|
+
}
|
|
142401
142406
|
}, {
|
|
142402
142407
|
immediate: true
|
|
142403
142408
|
});
|
|
@@ -143721,6 +143726,7 @@ var sub_bar_component = normalizeComponent(
|
|
|
143721
143726
|
item.index_set_id = `${item.index_set_id}`;
|
|
143722
143727
|
item.indexName = item.index_set_name;
|
|
143723
143728
|
item.lightenName = ` (${item.indices.map(newItem => newItem.result_table_id).join(';')})`;
|
|
143729
|
+
item.unique_id = `#_${item.index_set_id}`;
|
|
143724
143730
|
}
|
|
143725
143731
|
store.commit('retrieve/updateIndexSetList', indexSetList);
|
|
143726
143732
|
return indexSetList;
|