We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60a41ae commit 492fdf7Copy full SHA for 492fdf7
frontend/src/components/speakers/EditableSpeakerParticipation.vue
@@ -20,18 +20,8 @@
20
Edit
21
</Button>
22
<div v-else class="flex gap-2">
23
- <Button
24
- size="sm"
25
- :disabled="isSaving || isStatusUpdating"
26
- @click="saveChanges"
27
- >
28
- {{
29
- isSaving
30
- ? "Saving..."
31
- : isStatusUpdating
32
- ? "Updating..."
33
- : "Save"
34
- }}
+ <Button size="sm" :disabled="isSaving" @click="saveChanges">
+ {{ isSaving ? "Saving..." : "Save Changes" }}
35
36
<Button variant="outline" size="sm" @click="cancelEditing">
37
Cancel
0 commit comments