undo
This commit is contained in:
parent
0637d2f7e0
commit
4949f4d847
2 changed files with 3 additions and 3 deletions
|
|
@ -411,7 +411,7 @@ const Popover = {
|
|||
if (!scrollable) scrollable = window
|
||||
this.scrollable = scrollable
|
||||
let parent = this.$parent
|
||||
while (parent?.$.type.name !== 'Popover') {
|
||||
while (parent && parent.$.type.name !== 'Popover') {
|
||||
parent = parent.$parent
|
||||
}
|
||||
this.parentPopover = parent
|
||||
|
|
|
|||
|
|
@ -343,7 +343,7 @@
|
|||
<li>
|
||||
<div class="meta-buttons">
|
||||
<button
|
||||
v-if="pack?.remote === undefined"
|
||||
v-if="pack && pack.remote === undefined"
|
||||
class="button button-default btn"
|
||||
type="button"
|
||||
@click="savePackMetadata"
|
||||
|
|
@ -351,7 +351,7 @@
|
|||
{{ $t('admin_dash.emoji.save_meta') }}
|
||||
</button>
|
||||
<button
|
||||
v-if="pack?.remote === undefined"
|
||||
v-if="pack && pack.remote === undefined"
|
||||
class="button button-default btn"
|
||||
type="button"
|
||||
@click="savePackMetadata"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue