File tree Expand file tree Collapse file tree
frontend/src/routes/tracker Expand file tree Collapse file tree Original file line number Diff line number Diff line change 184184 <!-- Kanban Board -->
185185 <div class =" grid grid-cols-5 gap-4" >
186186 {#each columns as column }
187- <div
188- class =" space-y-4"
189- data-column ={column .id }
190- ondragover ={(e ) => handleDragOver (e , column .id )}
191- ondragleave ={handleDragLeave }
192- ondrop ={(e ) => handleDrop (e , column .id )}
193- >
187+ <div
188+ class =" space-y-4"
189+ role =" region"
190+ aria-label =" {column .title } column"
191+ data-column ={column .id }
192+ ondragover ={(e ) => handleDragOver (e , column .id )}
193+ ondragleave ={handleDragLeave }
194+ ondrop ={(e ) => handleDrop (e , column .id )}
195+ >
194196 <!-- Column Header -->
195197 <Card class ="glass-card {column .color } {dragOverColumn === column .id ? ' ring-2 ring-primary ring-offset-2 ring-offset-background' : ' ' }" >
196198 <CardHeader class =" p-4" >
You can’t perform that action at this time.
0 commit comments