mirror of
https://github.com/0PandaDEV/Qopy.git
synced 2025-04-20 12:54:05 +02:00
fix: info row title for links not shown until loaded
This commit is contained in:
parent
41535296e9
commit
6148b7a84a
1 changed files with 3 additions and 1 deletions
|
@ -815,7 +815,9 @@ const infoRows = computed(() => {
|
|||
{ label: "Path", value: (getInfo.value as InfoFile).path },
|
||||
],
|
||||
[ContentType.Link]: [
|
||||
{ label: "Title", value: (getInfo.value as InfoLink).title || "No Title Found" },
|
||||
...((getInfo.value as InfoLink).title && (getInfo.value as InfoLink).title !== 'Loading...'
|
||||
? [{ label: "Title", value: (getInfo.value as InfoLink).title || '' }]
|
||||
: []),
|
||||
{ label: "URL", value: (getInfo.value as InfoLink).url, isUrl: true },
|
||||
{ label: "Characters", value: (getInfo.value as InfoLink).characters },
|
||||
],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue