Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref
2022-11-09 02:12:17 -05:00
committed by GitHub
parent bb99d5cb6d
commit 023d03dd61
49 changed files with 76 additions and 76 deletions

View File

@@ -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 };

View File

@@ -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;
},
},
});