remove default option scrollable and minify text

This commit is contained in:
Soufiane Fariss
2024-08-21 00:41:44 +02:00
parent 8fd90883b4
commit 5c1c1b0ba9
2 changed files with 2 additions and 3 deletions

View File

@@ -3,7 +3,7 @@
:value="filteredTreeData"
v-model:expandedKeys="expandedKeys"
size="small"
scrollable
:scrollable="true"
:filters="filters"
:filterMode="filterMode"
sortField="namespace"
@@ -252,7 +252,6 @@ const onRightClick = (event, instance) => {
selectedNode.value = instance.node;
// show the context menu
console.log(menu);
menu.value.show(event);
}
};

View File

@@ -52,7 +52,7 @@
<!-- example node: "exit(0) -> 0" (if the node type is call-info, we highlight node.data.name.callInfo) -->
<template v-else-if="node.data.type === 'call-info'">
<highlightjs lang="c" :code="node.data.name.callInfo" />
<highlightjs lang="c" :code="node.data.name.callInfo" class="text-xs" />
</template>
<!-- example node: " = IMAGE_NT_SIGNATURE (PE)" -->