Небольшие поправки

This commit is contained in:
Book Pauk
2022-11-01 00:54:07 +07:00
parent f9fc59718a
commit 8da71a98da
2 changed files with 9 additions and 4 deletions

View File

@@ -717,10 +717,13 @@ class ExternalLibs {
this.editBookmarkDesc = this.bookmarkDesc = desc;
} else {
this.bookmarkLink = this.bookUrl;
if (!this.bookmarkLink && this.inpxReady && this.inpxUrl)
this.bookmarkLink = this.inpxUrl;
this.bookmarkDesc = '';
if (!this.bookmarkLink && this.inpxReady && this.inpxUrl) {
this.bookmarkLink = this.inpxUrl;
if (this.inpxTitle)
this.bookmarkDesc = this.inpxTitle;
}
}
this.addBookmarkMode = mode;

View File

@@ -10,7 +10,9 @@
@touchend.stop="onTouchEnd"
@touchmove.stop="onTouchMove"
>
<span class="header-text col"><slot name="header"></slot></span>
<div class="header-text col" style="width: 0">
<slot name="header"></slot>
</div>
<slot name="buttons"></slot>
<span class="close-button row justify-center items-center" @mousedown.stop @click="close"><q-icon name="la la-times" size="16px" /></span>
</div>