Skip to content

Commit

Permalink
Merge Margins management & cleanup Meeds-io/MIPs#103 (#1347)
Browse files Browse the repository at this point in the history
  • Loading branch information
SaraBoutej authored Nov 22, 2023
2 parents 2ac90fa + 15342da commit 79d8c1f
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-->
<template>
<v-app>
<v-card class="my-3 card-border-radius overflow-hidden" flat>
<v-card class="card-border-radius overflow-hidden" flat>
<template v-if="selectedConnector">
<extension-registry-component
v-if="editSettings"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
<v-app>
<v-card
v-if="displayUserSetting"
class="my-3 card-border-radius"
class="card-border-radius"
flat>
<v-list>
<v-list-item>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,19 @@ export default {
spaceId: eXo.env.portal.spaceId,
hidden: false,
}),
watch: {
hidden() {
if (this.hidden) {
this.$el.closest('.PORTLET-FRAGMENT').classList.add('hidden');
} else {
this.$el.closest('.PORTLET-FRAGMENT').classList.remove('hidden');
}
}
},
mounted() {
if (this.hidden) {
this.$el.closest('.PORTLET-FRAGMENT').classList.add('hidden');
}
}
};
</script>

0 comments on commit 79d8c1f

Please sign in to comment.