Skip to content

Commit

Permalink
fix: minor after-migration issues
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinKolarik committed Aug 13, 2024
1 parent 8e394a3 commit 5c5ff92
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 2 additions & 0 deletions components/AdoptProbe.vue
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,9 @@
<SelectButton
v-model="probeType"
:options="probeTypes"
:allow-empty="false"
aria-labelledby="basic"
option-label="name"
option-value="value"
severity="primary"
>
Expand Down
1 change: 1 addition & 0 deletions components/StartProbe.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<SelectButton
v-model="platform"
:options="platformOptions"
:allow-empty="false"
option-label="name"
option-value="value"
aria-labelledby="basic"
Expand Down
6 changes: 4 additions & 2 deletions pages/settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
severity="contrast"
text
label="Sync from GitHub"
:icon="{'pi pi-sync': true, 'pi-spin': loadingIconId === 1}"
:icon="loadingIconId === 1 ? 'pi pi-sync pi-spin' : 'pi pi-sync'"
class="!absolute right-8 top-[5px] h-6 bg-transparent !px-1 hover:bg-transparent"
@click="syncFromGithub(1)"
/>
Expand All @@ -40,7 +40,9 @@
v-model="appearance"
class="mt-2"
:options="themeOptions"
:allow-empty="false"
aria-labelledby="basic"
option-label="name"
option-value="value"
>
<template #option="slotProps">
Expand All @@ -65,7 +67,7 @@
severity="contrast"
text
label="Sync from GitHub"
:icon="{'pi pi-sync': true, 'pi-spin': loadingIconId === 2}"
:icon="loadingIconId === 2 ? 'pi pi-sync pi-spin' : 'pi pi-sync'"
class="!absolute right-8 top-[5px] h-6 bg-transparent !px-1 hover:bg-transparent"
@click="syncFromGithub(2)"
/>
Expand Down
2 changes: 1 addition & 1 deletion presets/aura/button/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ export default {
'mb-2': props.iconPos === 'top' && props.label != null,
'mt-2': props.iconPos === 'bottom' && props.label != null,
},
'animate-spin',
'pi pi-spin',
],
}),
badge: ({ props }) => ({
Expand Down

0 comments on commit 5c5ff92

Please sign in to comment.