",[3168,3171],{"name":3169,"color":3170},"pending triage","E99695",{"name":3172,"color":3173},"needs reproduction","FBCA04",32847,"Incorrect message when updating the version","2025-08-04T07:23:47Z","https://github.com/nuxt/nuxt/issues/32847",0.75807697,{"description":3180,"labels":3181,"number":3189,"owner":3158,"repository":3159,"state":3190,"title":3191,"updated_at":3192,"url":3193,"score":3194},"### Environment\n\n- Operating System: Windows_NT\n- Node Version: v22.13.1\n- Nuxt Version: 3.16.2\n- CLI Version: 3.24.1\n- Nitro Version: 2.11.8\n- Package Manager: npm@10.9.2\n- Builder: -\n- User Config: compatibilityDate, devtools, modules, css, eslint\n- Runtime Modules: @nuxt/eslint@1.3.0, @nuxt/ui-pro@3.0.2\n- Build Modules: -\n\n### Is this bug related to Nuxt or Vue?\n\nNuxt\n\n### Version\n\nv3.0.2\n\n### Reproduction\n\nobvious issue\n\n### Description\n\nIn the NuxtUiPro Header component, this line of code is used to define the title's aria label :\n`const ariaLabel = computed(() => (props.title || (slots.title && getSlotChildrenText(slots.title())) || 'Nuxt UI Pro').trim())\n`\n\nprops.title has a default value :\n\n`const props = withDefaults(defineProps\u003CHeaderProps\u003CT>>(), {\n title: 'Nuxt UI Pro'\n})`\n\nWhich means that if we are defining the title using the title slot instead of the title prop, the aria label will always equal to 'Nuxt UI Pro', because the first condition, which checks for the existence of props.title, will always equate to true. A simple fix would be using something like this instead :\n\n```\nconst ariaLabel = computed(() => (\n (props.title != 'Nuxt UI Pro' && props.title) ||\n (slots.title && getSlotChildrenText(slots.title())) ||\n 'Nuxt UI Pro'\n).trim())\n```\n\nPlease let me know if this is not the right place to raise issues for the Pro version of NuxtUi, I couldn't find a better place.\n\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[3182,3185,3186],{"name":3183,"color":3184},"bug","d73a4a",{"name":3155,"color":3156},{"name":3187,"color":3188},"pro","5BD3CB",3833,"closed","Title's Aria Label error with Nuxt Ui Pro's Header component","2025-04-09T12:10:13Z","https://github.com/nuxt/ui/issues/3833",0.7092257,{"description":3196,"labels":3197,"number":3202,"owner":3158,"repository":3158,"state":3190,"title":3203,"updated_at":3204,"url":3205,"score":3206},"### Environment\n\nN/A\n\n### Reproduction\n\nvisit any module in https://nuxt.com/modules\n\n### Describe the bug\n\n### (it's in every module, wasn't like this yesterday)\r\n\u003Cimg width=\"847\" alt=\"Screenshot 2022-12-29 at 12 13 39 PM\" src=\"https://user-images.githubusercontent.com/31113245/209986597-44095cc6-64fe-4e82-ba5c-8cdc481984c8.png\">\r\n\u003Cimg width=\"849\" alt=\"Screenshot 2022-12-29 at 12 13 57 PM\" src=\"https://user-images.githubusercontent.com/31113245/209986628-a7470109-e785-44a5-9fe4-a41cdca9ace7.png\">\r\n\n\n### Additional context\n\nI posted the same issue to the modules repo https://github.com/nuxt/modules/issues/533 but got no response so decided I'd try my luck here, sorry if it's the wrong place\n\n### Logs\n\n_No response_",[3198,3201],{"name":3199,"color":3200},"3.x","29bc7f",{"name":3169,"color":3170},12540,"Bug in Docs Module Overview","2023-01-19T16:06:44Z","https://github.com/nuxt/nuxt/issues/12540",0.73788375,{"description":3208,"labels":3209,"number":3213,"owner":3158,"repository":3159,"state":3190,"title":3214,"updated_at":3215,"url":3216,"score":3217},"### Description\n\nHi,\r\n\r\nI try to create a redirect link for each item in my select, but the redirect doesn't work all the time. If no item is selected, then for the first one it will select it rather than redirect the user :\r\n\r\n```vue\r\n\u003CUSelectMenu\r\n v-model=\"selected\" \r\n :options=\"contacts\" \r\n>\r\n \u003Ctemplate #option=\"{ option }\" >\r\n \u003Cspan>{{ option.name }}\u003C/span>\r\n \u003CNuxtLink :to=\"localePath({name: 'contacts-id', params: { id: option.id }})\" @click.stop>Show\u003C/NuxtLink>\r\n \u003C/template>\r\n\u003C/USelectMenu>\r\n```\r\n\r\nMuch appreciated help!\r\nThanks",[3210],{"name":3211,"color":3212},"question","d876e3",2115,"[SelectMenu] @click.stop not working on first item clicked","2024-09-11T14:48:05Z","https://github.com/nuxt/ui/issues/2115",0.73810333,{"description":3219,"labels":3220,"number":3223,"owner":3158,"repository":3159,"state":3190,"title":3224,"updated_at":3225,"url":3226,"score":3227},"### Description\n\nIs it possible to define the same configuration that is defined in app.config, inside a component.\n\nNow it seems that you can only define the slots, or class when there are no slots.",[3221,3222],{"name":3211,"color":3212},{"name":3155,"color":3156},3681,"Define variants inside a component","2025-03-26T09:51:36Z","https://github.com/nuxt/ui/issues/3681",0.74121237,{"description":3229,"labels":3230,"number":3233,"owner":3158,"repository":3159,"state":3190,"title":3234,"updated_at":3235,"url":3236,"score":3237},"### Description\n\nIs 'Type a command or search...' really suitable in an English context?\nToday, while deploying a new version of the docs, I hesitated when I saw this phrase in the search bar. In Chinese, the direct translation of 'Type a command or search...' feels quite strange in this context, as if it’s asking the user whether they want to enter a command or perform a search.\nThis phrase sounds unnatural in Chinese. A more appropriate translation might be: \"请输入内容进行搜索...\" (Enter content to search...).\n\n",[3231,3232],{"name":3211,"color":3212},{"name":3155,"color":3156},3276,"Regarding the Appropriateness of Translating 'Type a command or search...'","2025-02-09T10:38:48Z","https://github.com/nuxt/ui/issues/3276",0.7524382,{"description":3239,"labels":3240,"number":3243,"owner":3158,"repository":3244,"state":3190,"title":3245,"updated_at":3246,"url":3247,"score":3248},"Waiting for #216 ",[3241],{"name":3152,"color":3242},"1ad6ff",225,"nuxt.com","Base dirs autocomplete","2023-02-15T12:31:58Z","https://github.com/nuxt/nuxt.com/issues/225",0.7558481,{"description":3250,"labels":3251,"number":3243,"owner":3158,"repository":3252,"state":3190,"title":3253,"updated_at":3254,"url":3255,"score":3248},"I've had bad experiences with load times in many projects with google's recaptcha, i think it would be a great add to this project. ",[],"scripts","Google Recaptcha","2024-09-02T17:13:41Z","https://github.com/nuxt/scripts/issues/225",{"description":3257,"labels":3258,"number":3263,"owner":3158,"repository":3158,"state":3190,"title":3264,"updated_at":3265,"url":3266,"score":3267},"\u003C!-- 💚 Thanks for your time to make Nuxt better with your feedbacks 💚\r\n\r\n**IMPORTANT** Before reporting a bug:\r\n\r\n- Please make sure that you have read through Nuxt documentation: https://nuxtjs.org\r\n- If issue is related to a module please create the issue in corresponding repository\r\n- Ensure using latest version of nuxt dependencies using `yarn upgrade nuxt` or `npm upgrade nuxt`\r\n\r\n👍 A properly detailed bug report can save a LOT of time and help fixing issues as soon as possible.\r\n-->\r\n\r\n### Versions\r\n\r\n- nuxt: v2.14.12\r\n- node: v14.15.4\r\n\r\n### Reproduction\r\n\r\n\u003Cdetails open>\r\n\u003Csummary>Run yarn/npm audit from command line\u003C/summary>\r\n\u003Cbr>\r\n\u003C!-- Attaching `nuxt.config`, dependencies, logs or code snippets would help to find the issue -->\r\n\u003C/details>\r\n\r\n### Steps to reproduce\r\nyarn audit\r\n\r\n\r\n### What is Expected?\r\nNone\r\n\r\n### What is actually happening?\r\n\u003Cimg width=\"366\" alt=\"Screen Shot 2021-04-14 at 23 15 07\" src=\"https://user-images.githubusercontent.com/5079588/114743844-42a96980-9d77-11eb-95f2-d26414297cec.png\">\r\n",[3259,3260],{"name":3169,"color":3170},{"name":3261,"color":3262},"2.x","d4c5f9",9151,"yarn/npm audit found vulnerable package with severity as critical","2023-01-22T15:44:51Z","https://github.com/nuxt/nuxt/issues/9151",0.75724745,["Reactive",3269],{},["Set"],["ShallowReactive",3272],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fWh79lNyB7IoUloMcxkFflNLez-x6_WEYuHab6DcPvWI":-1},"/nuxt/ui/3266"]