File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -101,9 +101,7 @@ export default (props: {
101101 </ DragOverlay >
102102 </ DragDropProvider >
103103 </ div >
104- < label class = "modal-backdrop" htmlFor = "connection-modal" >
105- Close
106- </ label >
104+ < label class = "modal-backdrop" for = "connection-modal" />
107105 </ div >
108106 </ >
109107 )
Original file line number Diff line number Diff line change @@ -140,7 +140,10 @@ export default () => {
140140 } ,
141141 {
142142 accessorKey : AccessorKey . Process ,
143- accessorFn : ( row ) => row . metadata . process || '-' ,
143+ accessorFn : ( row ) =>
144+ row . metadata . process ||
145+ row . metadata . processPath . replace ( / ^ .* [ / \\ ] ( .* ) $ / , '$1' ) ||
146+ '-' ,
144147 } ,
145148 {
146149 accessorKey : AccessorKey . Host ,
@@ -237,7 +240,7 @@ export default () => {
237240 placeholder = "Search"
238241 onInput = { ( e ) => setSearch ( e . target . value ) }
239242 />
240- < label htmlFor = "connection-modal" class = "btn btn-circle" >
243+ < label for = "connection-modal" class = "btn btn-circle" >
241244 < IconSettings />
242245 </ label >
243246 < ConnectionsModal
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ declare module 'solid-js' {
22 namespace JSX {
33 interface Directives {
44 form : { }
5+ sortable : { }
56 }
67 }
78}
You can’t perform that action at this time.
0 commit comments