Jacob Sánchez

Results 23 comments of Jacob Sánchez

I have the same issue

@rokm This needs more visibility. I was looking for this and only found it after manually searching through the issues. Maybe it's worth mentioning in the website?

@Ginden it would be great if this could be done for the user by perhaps passing an extra argument to .update

I have this issue when using the theme along Breathe

Here's what I have come up with as a quick fix: ```css html[data-theme="dark"].writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) .sig-name { color: var(--dark-text-color); } html[data-theme="dark"].writer-html5 .rst-content dd dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.citation):not(.glossary):not(.simple) .sig-name { color:inherit; } ``` YMMV

@kanga333 This is a really cool action, I think this PR deserves a look.

Why not support this as an opt-in? Is there a reason on github's side?

You are, in fact, able to get the value, since you are getting null which is the initial value you gave it. What you are not doing is updating this...

```javascript export const useInternationalStore = defineStore('international', () => { const currentLanguageCode = ref(null); function setLang(value: string) { currentLanguageCode.value = value; } return { currentLanguageCode, setLang } }, { persist: true...