-
In a site that I'm building (https://github.com/dhruvkb/portfolio), I have a dynamically generated table on the "works" page. This is how the page appears in dev: This is how the same page appears in the built site: Notice the missing cells in the 'Epic' column of the first table and the 'Org' column of the second table. There is no code change between the modes. I'm stumped as to what might be causing this difference. If someone could help me debug what could be causing this, I'd be very grateful. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
This was a Pinia mistake on my part. I was using a Sorry I assumed it was a problem with îles. |
Beta Was this translation helpful? Give feedback.
This was a Pinia mistake on my part. I was using a
computed
ref that was recreating the objects on every use. Replacing that with a plainref
fixed the problem (commit dhruvkb/portfolio@fc3e795).Sorry I assumed it was a problem with îles.