dauinh commented on issue #44668:
URL: https://github.com/apache/airflow/issues/44668#issuecomment-2537882727

   hi @bbovenzi, I'm having trouble implementing components like `Status` or 
`Time` into the data table. The code below is my current implementation. I have 
also tried modifying columns definition, but stuck at how to implement 
different components for one column. Please let me know if you have any 
suggestion or insight. Thank you!
   
   Code:
   ```
   const formattedData = [
       {key: "Status", value: task?.state && <Status 
state={task.state}>{task.state}</Status>},
       ...
   ]
   ```
   Expected:
   <img width="356" alt="Screenshot 2024-12-11 at 8 40 29 PM" 
src="https://github.com/user-attachments/assets/5ad3d552-28ab-4315-add9-1b4022b62028";
 />
   Current:
   <img width="398" alt="Screenshot 2024-12-11 at 9 56 18 PM" 
src="https://github.com/user-attachments/assets/040cc032-7b0c-4894-a457-54aeee96d2cf";
 />
   
   
   Also, how do I remove header title without causing error?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@airflow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to