mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-18 06:13:52 +02:00
Fix file analysis object type
This commit is contained in:
@@ -498,7 +498,7 @@
|
||||
<vue-json-pretty :data="treeData" :deep="2" :theme="isDarkMode ? 'dark' : 'light'" show-icon />
|
||||
<br />
|
||||
<vue-json-pretty
|
||||
v-if="avatarDialog.fileAnalysis.length > 0"
|
||||
v-if="Object.keys(avatarDialog.fileAnalysis).length > 0"
|
||||
:data="avatarDialog.fileAnalysis"
|
||||
:deep="2"
|
||||
:theme="isDarkMode ? 'dark' : 'light'"
|
||||
|
||||
@@ -667,7 +667,7 @@
|
||||
<vue-json-pretty :data="treeData" :deep="2" :theme="isDarkMode ? 'dark' : 'light'" show-icon />
|
||||
<br />
|
||||
<vue-json-pretty
|
||||
v-if="worldDialog.fileAnalysis.length > 0"
|
||||
v-if="Object.keys(worldDialog.fileAnalysis).length > 0"
|
||||
:data="worldDialog.fileAnalysis"
|
||||
:deep="2"
|
||||
:theme="isDarkMode ? 'dark' : 'light'"
|
||||
|
||||
Reference in New Issue
Block a user