Linting.
This commit is contained in:
parent
c832ed36d4
commit
c7ba0a9cce
|
@ -18,7 +18,7 @@
|
|||
</script>
|
||||
|
||||
<div class="root">
|
||||
{#if $store.currentFrontEndType === "layout" || $allScreens.length}
|
||||
{#if $store.currentFrontEndType === 'layout' || $allScreens.length}
|
||||
<div class="switcher">
|
||||
<button
|
||||
class:selected={selected === COMPONENT_SELECTION_TAB}
|
||||
|
|
|
@ -49,7 +49,6 @@
|
|||
{:else if tab === 'LAYOUTS'}
|
||||
<Layout />
|
||||
{/if}
|
||||
|
||||
</Switcher>
|
||||
</div>
|
||||
|
||||
|
@ -61,8 +60,8 @@
|
|||
<!-- <Modal bind:this={modal}> -->
|
||||
<!-- <NewScreenModal /> -->
|
||||
<!-- </Modal> -->
|
||||
<!-- {/if} -->
|
||||
|
||||
<!-- {/if} -->
|
||||
<style>
|
||||
.title {
|
||||
display: flex;
|
||||
|
|
|
@ -8,10 +8,10 @@
|
|||
const currentScreenId = decodeURI($params.screen)
|
||||
const validScreen = $allScreens.some(screen => screen._id === currentScreenId)
|
||||
|
||||
console.log({
|
||||
validScreen,
|
||||
console.log({
|
||||
validScreen,
|
||||
currentScreenId,
|
||||
componentIds
|
||||
componentIds,
|
||||
})
|
||||
|
||||
if (!validScreen) {
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
class Integration {
|
||||
constructor() {
|
||||
}
|
||||
}
|
||||
constructor() {}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue