Skip to content

Commit 96272ce

Browse files
Remove Vuetify from 'Did you forget to sign in' page
1 parent 9baffd3 commit 96272ce

1 file changed

Lines changed: 9 additions & 7 deletions

File tree

contentcuration/contentcuration/frontend/shared/views/errors/PermissionsError.vue

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,33 @@
11
<template>
22

3-
<AppError>
3+
<StudioAppError>
44
<template #header>
55
{{ $tr('permissionDeniedHeader') }}
66
</template>
77
<template #details>
88
{{ details }}
99
</template>
1010
<template #actions>
11-
<ActionLink
11+
<KRouterLink
1212
v-bind="backHomeLink"
13-
:text="$tr('goToHomePageAction')"
13+
:text="$tr('backToHome')"
14+
appearance="raised-button"
15+
primary
1416
/>
1517
</template>
16-
</AppError>
18+
</StudioAppError>
1719

1820
</template>
1921

2022

2123
<script>
2224
23-
import AppError from './AppError';
25+
import StudioAppError from './StudioAppError';
2426
2527
export default {
2628
name: 'PermissionsError',
2729
components: {
28-
AppError,
30+
StudioAppError,
2931
},
3032
props: {
3133
backHomeLink: {
@@ -40,7 +42,7 @@
4042
},
4143
$trs: {
4244
permissionDeniedHeader: 'Did you forget to sign in?',
43-
goToHomePageAction: 'Go to home page',
45+
backToHome: 'Back to home',
4446
},
4547
};
4648

0 commit comments

Comments
 (0)