removed tags overflowing components

This commit is contained in:
Peter Olu 2022-05-06 08:09:16 +01:00
parent 642464540c
commit 69b5ad321b
2 changed files with 8 additions and 2 deletions

View File

@ -29,6 +29,7 @@ interface TraceState {
instances: Instance[];
endpoints: Endpoint[];
traceList: Trace[];
activeFilter: string;
displayMode: string;
currentView: string;
traceTotal: number;
@ -50,8 +51,9 @@ export const traceStore = defineStore({
services: [{ value: "0", label: "All" }],
instances: [{ value: "0", label: "All" }],
endpoints: [{ value: "0", label: "All" }],
displayMode: "Table",
displayMode: "List",
currentView: "traceList",
activeFilter: '',
traceList: [],
traceSpans: [],
traceTotal: 0,
@ -77,6 +79,9 @@ export const traceStore = defineStore({
setCurrentView(data: string) {
this.currentView = data;
},
setActiveFilter(data: string) {
this.currentView = data;
},
setCurrentTrace(trace: Trace) {
this.currentTrace = trace;
},

View File

@ -34,6 +34,7 @@ limitations under the License. -->
/>
<span class="tags-tip">
<a
v-if="false"
target="blank"
href="https://github.com/apache/skywalking/blob/master/docs/en/setup/backend/configuration-vocabulary.md"
>
@ -54,7 +55,7 @@ limitations under the License. -->
<Icon class="icon-help mr-5" iconName="help" size="middle" />
</span>
</el-tooltip>
<b v-if="type !== 'LOG'">{{ t("noticeTag") }}</b>
<!-- <b v-if="type !== 'LOG'">{{ t("noticeTag") }}</b> -->
</span>
</div>
</div>