File tree Expand file tree Collapse file tree 1 file changed +29
-23
lines changed
Expand file tree Collapse file tree 1 file changed +29
-23
lines changed Original file line number Diff line number Diff line change @@ -375,29 +375,35 @@ const endDate = computed(() => {
375375 </div >
376376
377377 <div class =" flex flex-col gap-4 w-full max-w-1/2" >
378- <SettingsToggle
379- v-model =" showRecentOnly"
380- :label =" $t('package.versions.recent_versions_only')"
381- :tooltip =" $t('package.versions.recent_versions_only_tooltip')"
382- tooltip-position =" bottom"
383- :tooltip-to =" inModal ? '#chart-modal' : undefined"
384- :tooltip-offset =" 8"
385- justify =" between"
386- reverse-order
387- :class =" pending ? 'opacity-50 pointer-events-none' : ''"
388- />
389-
390- <SettingsToggle
391- v-model =" showLowUsageVersions"
392- :label =" $t('package.versions.show_low_usage')"
393- :tooltip =" $t('package.versions.show_low_usage_tooltip')"
394- tooltip-position =" bottom"
395- :tooltip-to =" inModal ? '#chart-modal' : undefined"
396- :tooltip-offset =" 8"
397- justify =" between"
398- reverse-order
399- :class =" pending ? 'opacity-50 pointer-events-none' : ''"
400- />
378+ <TooltipApp
379+ :text =" $t('package.versions.recent_versions_only_tooltip')"
380+ position =" bottom"
381+ :to =" inModal ? '#chart-modal' : undefined"
382+ :offset =" 8"
383+ >
384+ <SettingsToggle
385+ v-model =" showRecentOnly"
386+ :label =" $t('package.versions.recent_versions_only')"
387+ justify =" start"
388+ reverse-order
389+ :class =" pending ? 'opacity-50 pointer-events-none' : ''"
390+ />
391+ </TooltipApp >
392+
393+ <TooltipApp
394+ :text =" $t('package.versions.show_low_usage_tooltip')"
395+ position =" bottom"
396+ :to =" inModal ? '#chart-modal' : undefined"
397+ :offset =" 8"
398+ >
399+ <SettingsToggle
400+ v-model =" showLowUsageVersions"
401+ :label =" $t('package.versions.show_low_usage')"
402+ justify =" start"
403+ reverse-order
404+ :class =" pending ? 'opacity-50 pointer-events-none' : ''"
405+ />
406+ </TooltipApp >
401407 </div >
402408 </div >
403409
You can’t perform that action at this time.
0 commit comments