mirror of
https://github.com/hcengineering/platform.git
synced 2025-05-29 11:31:32 +00:00
Fix ChannelsEditor (#1833)
This commit is contained in:
parent
2591bd7781
commit
b8d68d9fa0
@ -22,6 +22,8 @@
|
||||
<style lang="scss">
|
||||
.spinner-container {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
@ -35,7 +37,6 @@
|
||||
}
|
||||
|
||||
.spinner-container .inner {
|
||||
margin: auto;
|
||||
opacity: 0;
|
||||
animation-name: makeVisible;
|
||||
animation-duration: 0.25s;
|
||||
|
@ -180,6 +180,8 @@
|
||||
.box {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: flex-start;
|
||||
height: 100%;
|
||||
}
|
||||
.scroller-container.bottomStart {
|
||||
justify-content: flex-end;
|
||||
|
@ -160,7 +160,7 @@
|
||||
}}
|
||||
on:click={copyChannel}
|
||||
/>
|
||||
{#if editable !== undefined}
|
||||
{#if editable && editable === true}
|
||||
<Button
|
||||
focusIndex={4}
|
||||
kind={'transparent'}
|
||||
|
@ -26,7 +26,7 @@
|
||||
export let attachedTo: Ref<Doc>
|
||||
export let attachedClass: Ref<Class<Doc>>
|
||||
export let integrations: Set<Ref<Doc>> | undefined = undefined
|
||||
export let editable: boolean | undefined = true
|
||||
export let editable: boolean = true
|
||||
export let allowOpen = true
|
||||
export let focusIndex = -1
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user