Skip to content
Snippets Groups Projects
Commit f65ba4e4 authored by dcz2's avatar dcz2
Browse files

Fix regressions after the previous change

parent 84514796
Branches
Tags
No related merge requests found
...@@ -1157,7 +1157,7 @@ Object.assign(LexicalUnitEdit, { ...@@ -1157,7 +1157,7 @@ Object.assign(LexicalUnitEdit, {
@schemata-selected="schemataSelected" @schemata-selected="schemataSelected"
/> />
</div> </div>
<div v-if="right_pane_tab === 'frame_preview'" class="overflow-hidden h-100" > <div v-if="right_pane_tab === 'frame_preview'" class="overflow-hidden" style="height: calc(100% - 43px)">
<frame-preview <frame-preview
:key="currentPreviewedUnifiedFrameId" :key="currentPreviewedUnifiedFrameId"
:initialUnifiedFrameId="currentPreviewedUnifiedFrameId" :initialUnifiedFrameId="currentPreviewedUnifiedFrameId"
......
...@@ -25,14 +25,14 @@ export default { ...@@ -25,14 +25,14 @@ export default {
}, },
components: {UnificationEntriesList, UnificationEntriesForFramesList, UnificationFramesList}, components: {UnificationEntriesList, UnificationEntriesForFramesList, UnificationFramesList},
template: ` template: `
<label class="float-left mt-2"><input type="checkbox" v-model="isFrameView" /> {{ gettext('RAMY') }}</label> <label class="mt-2 position-absolute" style="z-index: 2"><input type="checkbox" v-model="isFrameView" /> {{ gettext('RAMY') }}</label>
<div v-if="!isFrameView"><unification-entries-for-frames-list <div v-if="!isFrameView" class="h-100"><unification-entries-for-frames-list
:unificationEntriesListRefreshKey="unificationEntriesListRefreshKey" :unificationEntriesListRefreshKey="unificationEntriesListRefreshKey"
:initialLexicalUnitId="initialLexicalUnitId" :initialLexicalUnitId="initialLexicalUnitId"
:initialEntryId="initialEntryId" :initialEntryId="initialEntryId"
@unified-frame-selected="unifiedFrameSelected" @unified-frame-selected="unifiedFrameSelected"
/></div> /></div>
<div v-else><unification-frames-list <div v-else class="h-100"><unification-frames-list
:unificationEntriesListRefreshKey="unificationEntriesListRefreshKey" :unificationEntriesListRefreshKey="unificationEntriesListRefreshKey"
@unified-frame-selected="unifiedFrameSelected" @unified-frame-selected="unifiedFrameSelected"
/></div> /></div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment