diff --git a/web/src/components/repo/pipeline/PipelineLog.vue b/web/src/components/repo/pipeline/PipelineLog.vue index c573b80e15d..d42bbc6c7db 100644 --- a/web/src/components/repo/pipeline/PipelineLog.vue +++ b/web/src/components/repo/pipeline/PipelineLog.vue @@ -151,7 +151,7 @@ const hasLogs = computed( // we do not have logs for skipped steps repo?.value && pipeline.value && step.value && step.value.state !== 'skipped' && step.value.state !== 'killed', ); -const autoScroll = useStorage('log-auto-scroll', false); +const autoScroll = useStorage('woodpecker:log-auto-scroll', false); const showActions = ref(false); const downloadInProgress = ref(false); const ansiUp = ref(new AnsiUp()); diff --git a/web/src/components/repo/settings/BadgeTab.vue b/web/src/components/repo/settings/BadgeTab.vue index 1339f88a084..90958b8399b 100644 --- a/web/src/components/repo/settings/BadgeTab.vue +++ b/web/src/components/repo/settings/BadgeTab.vue @@ -54,7 +54,7 @@ import { Repo } from '~/lib/api/types'; const apiClient = useApiClient(); const repo = inject>('repo'); -const badgeType = useStorage('last-badge-type', 'markdown'); +const badgeType = useStorage('woodpecker:last-badge-type', 'markdown'); if (!repo) { throw new Error('Unexpected: "repo" should be provided at this place'); diff --git a/web/src/components/user/UserGeneralTab.vue b/web/src/components/user/UserGeneralTab.vue index b6df9822a70..25d8e6c3863 100644 --- a/web/src/components/user/UserGeneralTab.vue +++ b/web/src/components/user/UserGeneralTab.vue @@ -7,7 +7,7 @@