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

View File

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