Skip to content

Commit 95affe6

Browse files
committed
fix: lint fix
Yes I know this is a lint fix, but also please consider the hard time I am going through, constantly working against the CI/CD while you might think, that is something that should work with you, not against. Please consider this lint fix an one time offence, it will not happen again
1 parent 94c1724 commit 95affe6

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

src/components/audio/SpotifyUserDeleteButton.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
<Button icon="pi pi-times" severity="danger" @click="confirmRef?.confirmDialog" />
33
<ConfirmWrapper
44
ref="confirmRef"
5+
accept-label="Delete"
56
delete
67
:loading="loading"
78
:message="confirmMessage"
8-
acceptLabel="Delete"
99
:on-accept="
1010
() => {
1111
loading = true;

src/components/integrations/IntegrationDeleteButton.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
/>
88
<ConfirmWrapper
99
ref="confirmRef"
10+
accept-label="Delete"
1011
:loading="loading"
1112
message="Are you sure you want to delete this integration?"
12-
acceptLabel="Delete"
1313
:on-accept="
1414
() => {
1515
loading = true;

src/components/modes/time-trail-race/TimeTrailRaceStepper.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515

1616
<ConfirmWrapper
1717
ref="confirmRef"
18+
accept-label="Reset"
1819
message="Are you sure you want to reset this trail race?"
19-
acceptLabel="Reset"
2020
:on-accept="timeTrailStore.resetPlayer"
2121
/>
2222
</template>

src/components/poster/StaticPosterButtonDelete.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<Button class="flex-1" icon="pi pi-trash" severity="danger" @click="confirmRef?.confirmDialog" />
33
<ConfirmWrapper
44
ref="confirmRef"
5+
accept-label="Delete"
56
:loading="loading"
67
message="Are you sure you want to delete this poster?"
7-
acceptLabel="Delete"
88
:on-accept="
99
async () => {
1010
loading = true;

src/components/timed-events/TimedEventDeleteButton.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<Button icon="pi pi-times" severity="danger" @click="confirmRef?.confirmDialog" />
33
<ConfirmWrapper
44
ref="confirmRef"
5+
accept-label="Delete"
56
:loading="loading"
67
message="Are you sure you want to delete this timed event?"
7-
acceptLabel="Delete"
88
:on-accept="
99
() => {
1010
loading = true;

src/views/Modes/CenturionModeView.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
<Button icon="pi pi-times" @click="confirmRef?.confirmDialog" />
88
<ConfirmWrapper
99
ref="confirmRef"
10+
accept-label="Quit"
1011
message="Are you sure you want to quit this centurion?"
11-
acceptLabel="Quit"
1212
:on-accept="centurionStore.quitCenturion"
1313
/>
1414
</div>

src/views/Modes/TimeTrailRaceModeView.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
<Button icon="pi pi-times" @click="confirmRef?.confirmDialog" />
1212
<ConfirmWrapper
1313
ref="confirmRef"
14+
accept-label="Quit"
1415
message="Are you sure you want to quit this spoelbakkenrace?"
15-
acceptLabel="Quit"
1616
:on-accept="timeTrailStore.quit"
1717
/>
1818
</div>

0 commit comments

Comments
 (0)