The Dev Tools --> Application --> Interest Group pane doesn't show fields like: * priority * priorityVector * prioritySignalsOverrides * enableBiddingSignalPrioritiztion The code that created the IG looks like this: ` var interestGroup = { owner: 'https://www.pst-dsp.com', name: `InterestGroupabc`, priorityVector: { signalA: 1 }, prioritySignalsOverrides: { signalA: 1 }, enableBiddingSignalsPrioritization: 1, priority: 10, lifetimeMs: 1000 * 60 * 60 * 24 * 30, ads: [], biddingLogicUrl: 'https://www.pst-dsp.com/bidding.js' }; await navigator.joinAdInterestGroup(interestGroup); ` Here is the Dev Tools values displayed, w/o priority fields: <img width="1083" alt="Screenshot 2024-02-17 at 3 58 42 PM" src="https://github.com/WICG/turtledove/assets/135841/b77236d7-b0e7-418c-8827-db79d61029d0"> And here we see the expected db values, indicating it was correctly joined. <img width="891" alt="Screenshot 2024-02-17 at 4 17 58 PM" src="https://github.com/WICG/turtledove/assets/135841/e20f2706-ee2f-4c21-b0b4-7be12c6e0070"> Also demo [here](https://www.pst-publisher.com/dev-tools/ig-pane/no-priority-info/skip-auth/test.html). This is minor, would be good as part of general introspection, debugging, etc.