-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18137 from ahmedhamidawan/invocations_panel
Add an Invocations Panel for the Invocations activity
- Loading branch information
Showing
9 changed files
with
408 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<script setup lang="ts"> | ||
import { BAlert } from "bootstrap-vue"; | ||
import { storeToRefs } from "pinia"; | ||
import { useUserStore } from "@/stores/userStore"; | ||
import InvocationScrollList from "../Workflow/Invocation/InvocationScrollList.vue"; | ||
import ActivityPanel from "./ActivityPanel.vue"; | ||
const { currentUser } = storeToRefs(useUserStore()); | ||
</script> | ||
|
||
<template> | ||
<ActivityPanel title="Workflow Invocations" go-to-all-title="Go to Invocations List" href="/workflows/invocations"> | ||
<InvocationScrollList v-if="currentUser && !currentUser?.isAnonymous" in-panel /> | ||
<BAlert v-else variant="info" class="mt-3" show>Please log in to view your Workflow Invocations.</BAlert> | ||
</ActivityPanel> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.