mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-07 14:56:06 +02:00
fix vue json pretty collapse issue
This commit is contained in:
@@ -811,7 +811,7 @@
|
|||||||
.notify-dot {
|
.notify-dot {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 6px;
|
top: 6px;
|
||||||
right: 0;
|
right: 2px;
|
||||||
width: 4px;
|
width: 4px;
|
||||||
height: 4px;
|
height: 4px;
|
||||||
background-color: #ef4444;
|
background-color: #ef4444;
|
||||||
|
|||||||
@@ -496,7 +496,12 @@
|
|||||||
@click="downloadAndSaveJson(avatarDialog.id, avatarDialog.ref)">
|
@click="downloadAndSaveJson(avatarDialog.id, avatarDialog.ref)">
|
||||||
<Download />
|
<Download />
|
||||||
</Button>
|
</Button>
|
||||||
<vue-json-pretty :data="treeData" :deep="2" :theme="isDarkMode ? 'dark' : 'light'" show-icon />
|
<vue-json-pretty
|
||||||
|
:key="treeData?.id"
|
||||||
|
:data="treeData"
|
||||||
|
:deep="2"
|
||||||
|
:theme="isDarkMode ? 'dark' : 'light'"
|
||||||
|
show-icon />
|
||||||
<br />
|
<br />
|
||||||
<vue-json-pretty
|
<vue-json-pretty
|
||||||
v-if="Object.keys(avatarDialog.fileAnalysis).length > 0"
|
v-if="Object.keys(avatarDialog.fileAnalysis).length > 0"
|
||||||
|
|||||||
@@ -1106,6 +1106,7 @@
|
|||||||
<Download />
|
<Download />
|
||||||
</Button>
|
</Button>
|
||||||
<vue-json-pretty
|
<vue-json-pretty
|
||||||
|
:key="groupDialog.treeData?.group?.id"
|
||||||
:data="groupDialog.treeData"
|
:data="groupDialog.treeData"
|
||||||
:deep="2"
|
:deep="2"
|
||||||
:theme="isDarkMode ? 'dark' : 'light'"
|
:theme="isDarkMode ? 'dark' : 'light'"
|
||||||
|
|||||||
@@ -1191,6 +1191,7 @@
|
|||||||
<Download />
|
<Download />
|
||||||
</Button>
|
</Button>
|
||||||
<vue-json-pretty
|
<vue-json-pretty
|
||||||
|
:key="userDialog.treeData?.id"
|
||||||
:data="userDialog.treeData"
|
:data="userDialog.treeData"
|
||||||
:deep="2"
|
:deep="2"
|
||||||
:theme="isDarkMode ? 'dark' : 'light'"
|
:theme="isDarkMode ? 'dark' : 'light'"
|
||||||
|
|||||||
@@ -688,7 +688,12 @@
|
|||||||
@click="downloadAndSaveJson(worldDialog.id, worldDialog.ref)">
|
@click="downloadAndSaveJson(worldDialog.id, worldDialog.ref)">
|
||||||
<Download />
|
<Download />
|
||||||
</Button>
|
</Button>
|
||||||
<vue-json-pretty :data="treeData" :deep="2" :theme="isDarkMode ? 'dark' : 'light'" show-icon />
|
<vue-json-pretty
|
||||||
|
:key="treeData?.id"
|
||||||
|
:data="treeData"
|
||||||
|
:deep="2"
|
||||||
|
:theme="isDarkMode ? 'dark' : 'light'"
|
||||||
|
show-icon />
|
||||||
<br />
|
<br />
|
||||||
<vue-json-pretty
|
<vue-json-pretty
|
||||||
v-if="Object.keys(worldDialog.fileAnalysis).length > 0"
|
v-if="Object.keys(worldDialog.fileAnalysis).length > 0"
|
||||||
|
|||||||
Reference in New Issue
Block a user