[READ-ONLY] a fast, modern browser for the npm registry
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: render `<select>` as ssr fallback

+7 -1
+7 -1
app/pages/settings.vue
··· 216 216 </option> 217 217 </select> 218 218 <template #fallback> 219 - <span class="skeleton block w-48 h-8" /> 219 + <select 220 + id="language-select" 221 + disabled 222 + class="w-full sm:w-auto min-w-48 bg-bg border border-border rounded-md px-3 py-2 text-sm text-fg opacity-50 cursor-wait" 223 + > 224 + <option>{{ $t('common.loading') }}</option> 225 + </select> 220 226 </template> 221 227 </ClientOnly> 222 228 </div>