mirror of
https://github.com/Fabio286/antares.git
synced 2025-02-16 19:50:37 +01:00
refactor: minor improvements
This commit is contained in:
parent
0fca70ebec
commit
2d126d521c
@ -17,7 +17,7 @@
|
||||
:style="[
|
||||
`background: ${folder.color};`,
|
||||
isOpen ? `max-height: ${60*(folder.connections.length+1)}px` : 'max-height: 60px',
|
||||
!isOpen ? `overflow: hidden;` : ''
|
||||
!isOpen || folderDrag ? `overflow: hidden;` : ''
|
||||
]"
|
||||
:list="localList"
|
||||
ghost-class="ghost"
|
||||
@ -213,7 +213,6 @@ emit('folder-sort');// To apply changes on component key change
|
||||
gap: 4px;
|
||||
padding: 4px;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
width: 100%;
|
||||
border-radius: 15px;
|
||||
transition: background .3s;
|
||||
|
@ -110,7 +110,6 @@ export const useConnectionsStore = defineStore('connections', {
|
||||
|
||||
return conn;
|
||||
});
|
||||
console.log(this.connectionsOrder);
|
||||
persistentStore.set('connectionsOrder', this.connectionsOrder);
|
||||
this.clearEmptyFolders();
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user