- Enhanced tests to ensure consistent messageId generation for legacy inbox rows lacking a messageId. - Updated test descriptions for better clarity regarding the new messageId handling. - Adjusted test expectations to align with the updated behavior of relaying legacy inbox rows with generated messageIds.
16 lines
241 B
Vue
16 lines
241 B
Vue
<template>
|
|
<v-app class="app-layout">
|
|
<AppHeader />
|
|
<main class="app-layout__main">
|
|
<slot />
|
|
</main>
|
|
<AppFooter />
|
|
</v-app>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.app-layout__main {
|
|
flex: 1;
|
|
padding-top: 64px;
|
|
}
|
|
</style>
|