Skip to content

Commit

Permalink
feat: added fastapi integration
Browse files Browse the repository at this point in the history
  • Loading branch information
slaveeks committed Nov 24, 2024
1 parent e0f5b6f commit 1e11c08
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/assets/sprite-icons/fastapi.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 8 additions & 1 deletion src/components/event/Overview.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,13 @@
icon="flask"
title="Flask"
/>
<DetailsAddons
v-if="getIntegrationAddons('fastapi')"
class="event-overview__section"
:addons="getIntegrationAddons('fastapi')"
icon="fastapi"
title="FastAPI"
/>
<DetailsAddons
v-if="hasContext"
class="event-overview__section"
Expand Down Expand Up @@ -127,7 +134,7 @@ export default Vue.extend({
return null;
}
const integrationToFilter = [ 'vue', 'nuxt', 'flask' ];
const integrationToFilter = [ 'vue', 'nuxt', 'flask', 'fastapi'];
const filteredAddons = {};
Object.entries(this.event.payload.addons).forEach(([name, value]) => {
Expand Down

0 comments on commit 1e11c08

Please sign in to comment.