mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-10-21 14:38:06 +00:00
Spelling (#1405)
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
@@ -57,7 +57,7 @@ export function useTabsClient() {
|
||||
const activeTab = inject<Ref<string>>('active-tab');
|
||||
|
||||
if (activeTab === undefined || tabs === undefined || disableHashMode === undefined) {
|
||||
throw new Error('Please use this "useTabsClient" composition inside a compoent running "useTabsProvider".');
|
||||
throw new Error('Please use this "useTabsClient" composition inside a component running "useTabsProvider".');
|
||||
}
|
||||
|
||||
return { activeTab, tabs, disableHashMode };
|
||||
|
@@ -92,8 +92,8 @@ export default defineStore({
|
||||
this.setPipeline(owner, repo, pipelines);
|
||||
},
|
||||
async loadPipelineFeed() {
|
||||
const pipeliness = await apiClient.getPipelineFeed();
|
||||
this.pipelineFeed = pipeliness;
|
||||
const pipelines = await apiClient.getPipelineFeed();
|
||||
this.pipelineFeed = pipelines;
|
||||
},
|
||||
},
|
||||
});
|
||||
|
Reference in New Issue
Block a user