The HTML details tag is a collapsible chunk of content. You declare a closed (collapsed) details tag by writing
<details>Some stuff</details>
And an open (expanded) one by writing
<details open>Some stuff</details>
How do we dynamically add and remove attributes from a tag (in this case specifically the open
attribute) with Angular?